React Native is one of Facebook's first open source projects that is both under very active development and is also being used to ship code to everybody using Facebook's mobile apps. We're still working out the kinks to make contributing to this project as easy and transparent as possible, but we're not quite there yet. Hopefully this document makes the process for contributing clear and preempts some questions you may have.
Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.
Some of the core team will be working directly on GitHub. These changes will be public from the beginning. Other changesets will come via a bridge with Facebook's internal source control. This is a necessity as it allows engineers at Facebook outside of the core team to move fast and contribute from an environment they are comfortable in.
We will do our best to keep master in good shape, with tests passing at all times. But in order to move fast, we will make API changes that your application might not be compatible with. We will do our best to communicate these changes and version appropriately so you can lock into a specific version if need be.
To see what changes are coming and provide better feedback to React Native contributors, use the latest release candidate when possible. By the time a release candidate is released, the changes it contains will have been shipped in production Facebook apps for over two weeks.
We are using GitHub Issues for our public bugs. Before filing a new task, try to make sure your problem doesn't already exist.
Questions and feature requests are tracked elsewhere:
The best way to get your bug fixed is to provide a reduced test case. Please provide either a Snack or a public repository with a runnable example.
Please report a single bug per issue. Always provide reproduction steps. You can use Snack in many cases to demonstrate an issue. If the bug cannot be reproduced using Snack, verify that the issue can be reproduced locally by targeting the latest release candidate. Ideally, check if the issue is present in master as well.
Do not forget to include sample code that reproduces the issue. Only open issues for bugs affecting either the latest stable release, or the current release candidate, or master (see the list of versions). If it is not clear from your report that the issue can be reproduced in one of these releases, your issue will be closed.
We're not able to provide support through GitHub Issues. If you're looking for help with your code, consider asking on Stack Overflow.
Facebook has a bounty program for the safe disclosure of security bugs. With that in mind, please do not file public issues; go through the process outlined on that page.
One great way you can contribute to the project without writing any code is to help triage issues and pull requests as they come in. Ask for more information if the issue does not provide all the details required by the template. Suggest labels. Flag issues that are stale or that should be closed. Ask for test plans and review code.
Adding labels, closing and reopening issues, and merging pull requests is, as you may expect, limited to a subset of contributors. Simply commenting on the issue or pull request can still go a long way towards helping us keep the number of outstanding issues under control.
The Facebook GitHub Bot allows certain active members of the community to perform administrative actions such as labeling and closing issues. The list of community members with this kind of access can be found at the top of IssueCommands.txt. The bot can be triggered by adding any of the following commands as a standalone comment on an issue:
@facebook-github-bot close: Closes an issue without providing a particular explanation.@facebook-github-bot label (.*): Use this command to add a label, such as "iOS" or "Android", to an issue.@facebook-github-bot duplicate (#[0-9]+): Marks an issue as a duplicate. Requires a issue number to be provided. The bot will close the issue.@facebook-github-bot stack-overflow: Mark issues that do not belong in the bug tracker, and redirect to Stack Overflow. The bot will close the issue after adding the For Stack Overflow label.@facebook-github-bot feature: Use this when an issue describes a feature request, as opposed to a reproducible bug. The bot will point the author to the feature request tracker, add the Feature Request label, then close the issue.@facebook-github-bot expected: Use this when an issue describes a type of expected behavior. The bot will close the issue.@facebook-github-bot answered: Use this when an issue appears to be a question that has already been answered by someone on the thread. The bot will close the issue.@facebook-github-bot no-reply: Use this when an issue requires more information from the author but they have not added a comment in over two weeks. The bot will close the issue.@facebook-github-bot reopen: Re-opens a previously closed issue.@facebook-github-bot bugfix: Mark issues that describe a reproducible bug. The bot will prompt the author to submit a pull request with a fix.@facebook-github-bot icebox: Use this when an issue has been open for over 30 days with no activity. The bot will close the issue after adding the Icebox label.Additionally, the following commands can be used on a pull request:
@facebook-github-bot cla: Remind the author that the CLA needs to be signed.@facebook-github-bot shipit: Flag the PR for merging. If used by a core contributor, the bot will attempt to import the pull request. In general, core contributors are those who have consistently submitted high quality contributions to the project.Many React Native users are active on Stack Overflow. If you want to get a general sense of what React Native folks talk about, check out the React Native Community Facebook group. There is also an active community of React and React Native users on the Discord chat platform in case you need help.
The React Native team sends out periodical updates through the following channels:
Core contributors to React Native meet monthly and post their meeting notes on the React Native blog. You can also find ad hoc discussions in the React Native Core Contributors Facebook group.
If you intend to change the public API, or make any non-trivial changes to the implementation, we recommend filing an issue. This lets us reach an agreement on your proposal before you put significant effort into it.
If you're only fixing a bug, it's fine to submit a pull request right away but we still recommend to file an issue detailing what you're fixing. This is helpful in case we don't accept that specific fix but want to keep track of the issue.
Working on your first Pull Request? You can learn how from this free video series:
How to Contribute to an Open Source Project on GitHub
To help you get your feet wet and get you familiar with our contribution process, we have a list of beginner friendly issues that contain bugs which are fairly easy to fix. This is a great place to get started.
If you decide to fix an issue, please be sure to check the comment thread in case somebody is already working on a fix. If nobody is working on it at the moment, please leave a comment stating that you intend to work on it so other people don't accidentally duplicate your effort.
If somebody claims an issue but doesn't follow up for more than two weeks, it's fine to take over it but you should still leave a comment.
If you send a pull request, please do it against the master branch. We maintain stable branches for stable releases separately but we don't accept pull requests to them directly. Instead, we cherry-pick non-breaking changes from master to the latest stable version.
The core team will be monitoring for pull requests. When we get one, we'll run some Facebook-specific integration tests on it first. From here, we'll need to get another person to sign off on the changes and then merge the pull request. For API changes we may need to fix internal uses, which could cause some delay. We'll do our best to provide updates and feedback throughout the process.
Small pull requests are much easier to review and more likely to get merged. Make sure the PR does only one thing, otherwise please split it.
Before submitting a pull request, please make sure the following is done…
master.node linter.js <files touched>).Note: It is not necessary to keep clicking
Merge master to your branchon the PR page. You would want to merge master if there are conflicts or tests are failing. The Facebook-GitHub-Bot ultimately squashes all commits to a single one before merging your PR.
A good test plan has the exact commands you ran and their output, provides screenshots or videos if the pull request changes UI or updates the website.
website/README.md)See "What is a Test Plan?" to learn more: https://medium.com/@martinkonicek/what-is-a-test-plan-8bfc840ec171#.y9lcuqqi9
Make sure all tests pass on both Travis and Circle CI. PRs that break tests are unlikely to be merged.
You can learn more about running tests and contributing to React Native next.
When adding a new breaking change, follow this template in your pull request:
If your pull request is merged, a core contributor will update the list of breaking changes which is then used to populate the release notes.
Copy and paste this to the top of your new file(s):
If you've added a new module, add a @providesModule <moduleName> at the end of the comment. This will allow the haste package manager to find it.
In order to accept your pull request, we need you to submit a CLA. You only need to do this once, so if you've done this for another Facebook open source project, you're good to go. If you are submitting a pull request for the first time, just let us know that you have completed the CLA and we can cross-check with your GitHub username.
Complete your CLA here: https://code.facebook.com/cla
Our linter will catch most styling issues that may exist in your code. You can check the status of your code styling by simply running node linter.js <files touched>.
However, there are still some styles that the linter cannot pick up.
'use strict';' over "setTimeout and setInterval" over ' for string literal props{} of props should hug their values (no spaces)> of opening tags on the same line as the last prop/> of self-closing tags on their own line and left-align them with the opening <@property declarationsif, on the same line- method, @interface, and @implementation brackets on the following line* operator goes with the variable name (e.g. NSObject *variableName;)By contributing to React Native, you agree that your contributions will be licensed under its BSD license.
Read the next section to learn how to test your changes.
You can edit the content above on GitHub and send us a pull request!