Thanks for contributing, you rock!
If you use our code, it is now our code.
Please read https://reactjs.org/ and the Code of Conduct before opening an issue.
- Think You Found a Bug?
- Proposing New or Changed API?
- Issue Not Getting Attention?
- Making a Pull Request?
- Setup
- Development
Please provide a test case of some sort. Best is a pull request with a failing test. Next is a link to CodePen/JS Bin or repository that illustrates the bug. Finally, some copy/pastable code is acceptable.
Please provide thoughtful comments and some sample code. Proposals without substance will be closed.
If you need a bug fixed and nobody is fixing it, it is your responsibility to fix it. Issues with no activity for 30 days may be closed.
Pull requests need only the 👍 of two or more collaborators to be merged; when the PR author is a collaborator, that counts as one.
All commits that fix bugs or add features need a test.
<blink>
Do not merge code without tests.</blink>
All commits that change or add to the API must be done in a pull request that also:
- Adds an entry to
CHANGES.md
with clear steps for updating code for changed or removed API - Updates examples
- Updates the docs
The following steps will get you setup to contribute changes to this repo:
- Fork the repo (click the Fork button at the top right of this page).
- Clone your fork locally.
# in a terminal, cd to parent directory where you want your clone to be, then
git clone https://github.com/<your_github_username>/react-router.git
cd react-router
- Install dependencies and build. React Router uses
npm
, so you should too. If you install usingyarn
, unnecessary yarn lock files will be generated.
npm install
npm run build
React Router uses a monorepo to host code for multiple packages. These packages live in the packages
directory.
React Router uses Lerna to manage the monorepo. Lerna sets up symlinks between the packages, so when you build one package, its changes will be automatically available to the packages that depend on it.
Calling npm run build
from the root directory will build every package. If you want to build a specific package, you should cd
into that directory.
# build everything
npm run build
# build react-router-dom
cd packages/react-router-dom
npm run build
Calling npm test
from the root directory will run every package's tests. If you want to run tests for a specific package, you should cd
into that directory.
# all tests
npm test
# react-router-dom tests
cd packages/react-router-dom
npm test
React Router uses Jest to run its tests, so you can provide the --watch
flag to automatically re-run tests when files change.
The code for the documentation website lives in the website
directory. cd
into there and call npm start
to start a webpack dev server on localhost:8080
that will watch for changes.
cd website
npm start