First, thank you for considering contributing to React Native Firebase! It's people like you that make the open source community such a great community! 😊
We welcome any type of contribution, not just code. You can help with;
- QA: file bug reports, the more details you can give the better (e.g. platform versions, screenshots SDK versions & logs)
- Docs: improve reference coverage, add more examples, fix typos or anything else you can spot.
- At the top of every page on our docs site you can click the
Edit Page
button to go to that pages markdown file or TypeScript definition file, or view the documents directly
- At the top of every page on our docs site you can click the
- Community: presenting the project at meetups, organizing a dedicated meetup for the local community, ...
- Code: take a look at the open issues. Even if you can't write code, commenting on them, showing that you care about a given issue matters.
It is normal for a first pull request to be a potential fix for a problem but moving on from there to helping the project's direction can be difficult.
We try to help contributors cross that barrier by offering good first step issues (labeled good-first-issue
). These issues can be fixed without feeling like you are stepping on toes. Ideally, these are non-critical issues that are well defined. They will be purposely avoided by mature contributors to the project, to make space for others.
Additionally issues labeled with the Help:
prefix can also be picked up, these may not necessarily require code changes but rather help with debugging and finding the cause of the issue whether it's a bug or a users incorrect setup of the library or project.
We aim to keep all project discussion inside GitHub issues. This is to make sure valuable discussion is accessible via search. If you have questions about how to use the library, or how the project is running - GitHub issues are the go-to tool for this project.
This is normal don't worry - not everyone can develop native code for Obj-C and Java, we understand that.
Although we won't merge Pull Requests unless they support all applicable platforms, we do however recommend that you still submit a PR
for the Platform that you do know and then label it as either Help: iOS
or Help: Android
(or post a comment requesting it to be labeled).
This will allow other contributors to help add the missing platform support by making changes to your existing PR.
To quote @alloy from this issue:
Do not ever feel bad for not contributing to open source.
We want contributors to provide ideas, keep the ship shipping and to take some of the load from others. It is non-obligatory; we’re here to get things done in an enjoyable way. 🏆
We do ask though that you follow the conduct guidelines set out in our Code of Conduct throughout your contribution journey.
You can reach out to us directly via Discord direct messages or Twitter if you'd like to discuss something privately, alternatively you can also email us at oss[at]invertase.io
- Salakar
- Twitter: @mikediarmid
- Discord:
Salakar#1337
- Ehesp
- Twitter: @elliothesp
- Discord:
Alias#3980
Working on your first Pull Request? You can learn how from this free series, How to Contribute to an Open Source Project on GitHub.
- Ensure any new JS implementations mirror the official Firebase JS SDK implementation.
- This includes matching up with the same method names, types, usages, inputs and outputs.
- In some instances this is not always possible.
- Methods/Features that are specific to a single platform only should be documented as such and the types description
@platform
annotated;export SomeInterface { /** * A cool method. * * @platform ios iOS */ aCoolMethod(): Promize<null>; }
- If a method works on both platforms then there's no need to annotate it
- Name your native code methods the same as the JS method name
- e.g. the Android (
@ReactMethod
) implementation offirebase.auth().signInWithEmailAndPassword()
is namedsignInWithEmailAndPassword
- e.g. the Android (
To get started locally the following steps are required:
git clone https://github.com/invertase/react-native-firebase.git
cd react-native-firebase
yarn
yarn tests:ios:pod:install
brew tap wix/brew
brew install applesimutils xbeautify
Note that this project is a mono-repo, so you only need to install NPM dependencies once at the root of the project with
yarn
.
The project supports JS only testing through Jest. The following package scripts are exported to help you run tests;
yarn tests:jest
- run Jest tests once and exit.yarn tests:jest-watch
- run Jest tests in interactive mode and watch for changes.yarn tests:jest-coverage
- run Jest tests with coverage. Coverage is output to./coverage
.
The project has a Detox powered end-to-end testing app located in /tests
.
To run end-to-end tests for Android
, please run:
yarn tests:android:build
- buildsAndroid
test application.yarn tests:packager:jet-reset-cache
- runs JavaScript bundler.yarn tests:emulator:start
- runs Firestore emulator for Firestore tests.yarn tests:android:test
- runs tests using Detox library. Tests for each package can be found in thee2e
directory (i.e.[PACKAGE]/e2e/*.e2e.js
)
To run end-to-end tests for iOS
, please run:
yarn tests:ios:build
- buildsiOS
test application.yarn tests:packager:jet-reset-cache
- runs JavaScript bundler.yarn tests:emulator:start
- runs Firestore emulator for Firestore tests.yarn tests:ios:test
- runs tests using Detox library. Tests for each package can be found in thee2e
directory (i.e.[PACKAGE]/e2e/*.e2e.js
)
See it's local testing guide here to get started
with e2e
testing this project.
All code changes should be submitted as a pull request to the main branch.
The bigger the pull request, the longer it will take to review and merge. Try to break down large pull requests in smaller chunks that are easier to review and merge. It is also always helpful to have some context for your pull request. What was the purpose? Why does it matter to you? Tag in any linked issues.
To aid review we also ask that you fill out the PR template as much as possible.
Please use draft pull requests if the pull request is not yet complete.
We use the Conventional Commits format throughout the project. Your Pull Request title should be in this format; however your commits themselves do not need to follow this format as all PRs are eventually squash merged.
docs(analytics): added extra example for logEvent
tests(perf): should throw invalid arg error
fix(firestore,android): fixed NPE crash
feat(functions): add support for function timeouts
See the Conventional Commits specification for more information.
Pull Requests to main require two or more peer-review approvals and passing status checks before they can be merged.
Reviews of Pull Requests are based on the following acceptance critical:
- Does the PR provide cross-platform support?
- i.e. if adding a new feature then does the implementation provide iOS and Android support.
- Pull Requests should not be merged unless both platforms are supported (unless the feature is specific to one platform only)
- Pull Request follows the Firebase Web SDKs API/implementation.
- In some instances this is not always possible.
- If APIs have changed;
- Has the documentation been updated?
- Have the TypeScript types been added?
- Have the tests been updated or new tests been added to test newly implemented or changed functionality.
- E2E tests.
- Other tests through Jest.
- Do all CI checks pass.
Once a PR is merged into main; new versions of the changed packages are automatically created and published to NPM.
If you made it all the way to the end, bravo dear user, we love you. You can include the 🔥 emoji at the bottom of your issue or PR to signal to us that you did in fact read this file and are trying to conform to it as best as possible: :fire:
.