We welcome pull requests from freeCodeCamp campers (our students) and seasoned JavaScript developers alike! Follow these steps to contribute:
-
Find an issue that needs assistance by searching for the Help Wanted tag.
-
Let us know you are working on it by posting a comment on the issue.
-
Follow the instructions in this guide to start working on the issue.
Remember to feel free to ask for help in our Contributors Gitter room.
Working on your first Pull Request? You can learn how from this free series How to Contribute to an Open Source Project on GitHub
If you've found a bug that is not on the board, follow these steps.
command | description |
---|---|
npm run test |
run all JS tests in the system, including client, server, lint and challenge tests |
npm run test-challenges |
run all challenge tests (for each challenge JSON file, run all tests against all solutions ) |
npm run seed (or node seed/index.js ) |
parses all the challenge JSON files and saves them into MongoDB (code is inside seed/index.js) |
npm run commit |
interactive tool to help you build a good commit message |
npm run unpack |
extract challenges from seed/challenges into unpacked subdirectory, one HTML page per challenge - see Unpack and Repack |
npm run repack |
repack challenges from unpacked subdirectory into seed/challenges |
- Creating a Pull Request
- Common Steps
- How We Review and Merge Pull Requests
- How We Close Stale Issues
- Next Steps
- Other Resources
Prerequisite | Version |
---|---|
MongoDB Community Server | ~ ^3 |
MailHog | ~ ^1 |
Node.js | ~ ^8.9.3 |
npm (comes with Node) | ~ ^5 |
Updating to the latest releases is recommended.
If Node.js or MongoDB is already installed on your machine, run the following commands to validate the versions:
node -v
mongo --version
To check your MongoDB version on Windows, you have to locate the installation directory. It is probably located at something like C:\Program Files\MongoDB\Server\3.4\
where 3.4 is your version number.
If your versions are lower than the prerequisite versions, you should update.
Platform-specific guides to setting up a development environment:
- How to clone and setup the freeCodeCamp website on a Windows pc
- How to Clone and Setup the freeCodeCamp Website on a Mac
- Install Git or your favorite Git client.
- (Optional) Setup an SSH Key for GitHub.
- Go to the top level freeCodeCamp repository: https://github.com/freeCodeCamp/freeCodeCamp
- Click the "Fork" Button in the upper right hand corner of the interface (More Details Here)
- After the repository (repo) has been forked, you will be taken to your copy of the freeCodeCamp repo at https://github.com/yourUsername/freeCodeCamp
- Open a Terminal / Command Line / Bash Shell in your projects directory (i.e.:
/yourprojectdirectory/
) - Clone your fork of freeCodeCamp
$ git clone https://github.com/yourUsername/freeCodeCamp.git
(make sure to replace yourUsername
with your GitHub username)
This will download the entire freeCodeCamp repo to your projects directory.
- Change directory to the new freeCodeCamp directory (
cd freeCodeCamp
) - Add a remote to the official freeCodeCamp repo:
$ git remote add upstream https://github.com/freeCodeCamp/freeCodeCamp.git
Congratulations, you now have a local copy of the freeCodeCamp repo!
Now that you have a copy of your fork, there is work you will need to do to keep it current.
Do this prior to every time you create a branch for a PR:
- Make sure you are on the
staging
branch
$ git status
On branch staging
Your branch is up-to-date with 'origin/staging'.
If your aren't on staging
, resolve outstanding files / commits and checkout the staging
branch
$ git checkout staging
- Do a pull with rebase against
upstream
$ git pull --rebase upstream staging
This will pull down all of the changes to the official staging branch, without making an additional commit in your local repo.
- (Optional) Force push your updated staging branch to your GitHub fork
$ git push origin staging --force
This will overwrite the staging branch of your fork.
Before you start working, you will need to create a separate branch specific to the issue / feature you're working on. You will push your work to this branch.
Name the branch something like fix/xxx
or feature/xxx
where xxx
is a short description of the changes or feature you are attempting to add. For example fix/email-login
would be a branch where you fix something specific to email login.
To create a branch on your local machine (and switch to this branch):
$ git checkout -b [name_of_your_new_branch]
and to push to GitHub:
$ git push origin [name_of_your_new_branch]
If you need more help with branching, take a look at this.
You should have ESLint running in your editor, and it will highlight anything doesn't conform to freeCodeCamp's JavaScript Style Guide (you can find a summary of those rules here).
Please do not ignore any linting errors, as they are meant to help you and to ensure a clean and simple code base.
To be able to create a user and log into your development copy, you need to set up MailHog. MailHog is a local SMTP mail server that will catch the emails your freeCodeCamp instance is sending. How you install and run MailHog is dependent upon your OS.
Here is how to set up MailHog on macOS with Homebrew:
brew install mailhog
brew services start mailhog
Download the latest MailHog version from MailHog's official repository. Click on the link for your Windows version (32 or 64 bit) and .exe file will be downloaded to your computer.
Once it finishes downloading, click on the file. You will probably get a Windows firewall notification where you will have to allow access to MailHog. Once you do, a standard Windows command line prompt will open with MailHog already running.
To close MailHog, close the command prompt. To run it again, click on the same .exe file. You don't need to download a new one.
First install Go.
For Debian-based systems like Ubuntu and Linux Mint, run:
sudo apt-get install golang
For CentOS, Fedora, Red Hat Linux, and other RPM-based systems, run:
sudo dnf install golang
Or:
sudo yum install golang
Set the path for Go:
echo "export GOPATH=$HOME/go" >> ~/.profile
echo 'export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin' >> ~/.profile
source ~/.profile
Then install and run MailHog:
go get github.com/mailhog/MailHog
sudo cp /home/$(whoami)/go/bin/MailHog /usr/local/bin/mailhog
mailhog
Once you have installed MailHog and started it running you need to open your MailHog inbox in your browser, open a new tab or window and navigate to http://localhost:8025. You should now see a screen like below:
When your freeCodeCamp installation sends an email you will see it appear here. Like below:
Open the mail and you should see two tabs where you can view the content - plain text and source. Make sure you are on the plain text tab.
Any links in the email should be clickable.
For any other questions related to MailHog or for instructions on custom configurations, check out the MailHog repository.
Once you have freeCodeCamp cloned, before you start the application, you first need to install all of the dependencies:
# Install NPM dependencies
npm install
Then you need to add the private environment variables (API Keys):
# Create a copy of the "sample.env" and name it as ".env".
# Populate it with the necessary API keys and secrets:
# macOS / Linux
cp sample.env .env
# Windows
copy sample.env .env
Then edit the .env
file and modify the API keys only for services that you will use.
Note: Not all keys are required, to run the app locally, however MONGOHQ_URL
is the most important one. Unless you have MongoDB running in a setup different than the defaults, the URL in the sample.env should work fine.
You can leave the other keys as they are. Keep in mind if you want to use more services you'll have to get your own API keys for those services and edit those entries accordingly in the .env file.
Now you will need to start MongoDB, and then seed the database, then you can start the application:
# Start the mongo server in a separate terminal
# On OS X:
mongod
# If you are using Windows, you have to instead specify the full path to the mongod binary
# Make sure to replace 3.4 with the version you have installed
"C:\Program Files\MongoDB\Server\3.4\bin\mongod"
# Initialize freeCodeCamp
# This will seed the database for the first time.
# This command should only be run once.
npm run only-once
# Start the application
npm run develop
Now navigate to your browser and open http://localhost:3000. If the app loads, congratulations – you're all set.
Otherwise, let us know by asking in the Contributors chat room on Gitter. There might be an error in the console of your browser or in Bash / Terminal / Command Line that will help identify the problem.
If the app launches but you are encountering errors with the UI itself, for example if fonts are not being loaded or if the code editor is not displaying properly, you may try the following:
# Remove all installed node modules
rm -rf node_modules
# Reinstall npm packages
npm install
# Seed the database
node seed
# Re-start the application
npm run develop
Use this if you just want to work on freeCodeCamp.
You will need to have docker and docker-compose installed before executing the commands below.
Setup:
docker-compose run --rm freecodecamp npm install
docker-compose run --rm freecodecamp npm run only-once
Run:
docker-compose up
Use this if you want to work on other services that will run alongside of freeCodeCamp, using the database directly. An example is the open-api project.
docker-compose -f docker-compose.yml -f docker-compose-shared.yml up
To create a new user, you will need to perform the following steps:
- run MailHog if you haven't set up yet check set-up-mailhog
- run
npm run develop
and navigated to http://localhost:3000 - Click over the Sign-Up link situated on the right corner of the navigation bar.
- Write your email over the input and press the button "get a sign in link" this will send an email with the login URL into MailHog.
- The last step is to check your inbox in MailHog for a new email from "team@freecodecamp.org" click over the URL inside of it you will be redirected and logged in into the app.
This bit is up to you!
The best way to find out any code you wish to change/add or remove is using the GitHub search bar at the top of the repository page. For example, you could search for a challenge name and the results will display all the files along with line numbers. Then you can proceed to the files and verify this is the area that you were looking forward to edit. Always feel free to reach out to the chat room when you are not certain of any thing specific in the code.
When you're ready to share your code, run the test suite:
$ npm test
and ensure all tests pass.
A pull request (PR) is a method of submitting proposed changes to the freeCodeCamp repo (or any repo, for that matter). You will make changes to copies of the files which make up freeCodeCamp in a personal fork, then apply to have them accepted by freeCodeCamp proper.
freeCodeCamp Issue Mods and staff are on hand to assist with Pull Request related issues in our Contributors chat room.
Take away only one thing from this document: Never, EVER
make edits to the staging
branch. ALWAYS make a new branch BEFORE you edit
files. This is critical, because if your PR is not accepted, your copy of
staging will be forever sullied and the only way to fix it is to delete your
fork and re-fork.
There are two methods of creating a pull request for freeCodeCamp:
- Editing files on a local clone (recommended)
- Editing files via the GitHub Interface
This is the recommended method. Read about How to Setup and Maintain a Local Instance of freeCodeCamp.
-
Perform the maintenance step of rebasing
staging
. -
Ensure you are on the
staging
branch usinggit status
:$ git status On branch staging Your branch is up-to-date with 'origin/staging'. nothing to commit, working directory clean
-
If you are not on staging or your working directory is not clean, resolve any outstanding files/commits and checkout staging
git checkout staging
-
Create a branch off of
staging
with git:git checkout -B branch/name-here
Note: Branch naming is important. Use a name likefix/short-fix-description
orfeature/short-feature-description
. -
Edit your file(s) locally with the editor of your choice.
-
Check your
git status
to see unstaged files. -
Add your edited files:
git add path/to/filename.ext
You can also do:git add .
to add all unstaged files. Take care, though, because you can accidentally add files you don't want added. Review yourgit status
first. -
Commit your edits: We have a tool that helps you to make standard commit messages. Execute
npm run commit
and follow the steps. -
Squash your commits if there are more than one.
-
If you would want to add/remove changes to previous commit, add the files as in Step 5 earlier, and use
git commit --amend
orgit commit --amend --no-edit
(for keeping the same commit message). -
Push your commits to your GitHub Fork:
git push origin branch/name-here
-
Go to Common Steps
Note: Editing via the GitHub Interface is not recommended, since it is not possible to update your fork via GitHub's interface without deleting and recreating your fork.
Read the Wiki article for further information
-
Once the edits have been committed, you will be prompted to create a pull request on your fork's GitHub Page.
-
By default, all pull requests should be against the freeCodeCamp main repo,
staging
branch. Make sure that your Base Fork is set to freeCodeCamp/freeCodeCamp when raising a Pull Request. -
Submit a pull request from your branch to freeCodeCamp's
staging
branch. -
In the body of your PR include a more detailed summary of the changes you made and why.
- If the PR is meant to fix an existing bug/issue then, at the end of
your PR's description, append the keyword
closes
and #xxxx (where xxxx is the issue number). Example:closes #1337
. This tells GitHub to close the existing issue, if the PR is merged.
- If the PR is meant to fix an existing bug/issue then, at the end of
your PR's description, append the keyword
-
Indicate if you have tested on a local copy of the site or not.
freeCodeCamp has a team of volunteer Issue Moderators. These Issue Moderators routinely go through open pull requests in a process called Quality Assurance (QA).
-
If an Issue Moderator QA's a pull request and confirms that the new code does what it is supposed without seeming to introduce any new bugs, they will comment "LGTM" which means "Looks good to me."
-
Another Issue Moderator will QA the same pull request. Once they have also confirmed that the new code does what it is supposed to without seeming to introduce any new bugs, they will merge the pull request.
If you would like to apply to join our Issue Moderator team, message @quincylarson with links to 5 of your pull requests that have been accepted and 5 issues where you have helped someone else through commenting or QA'ing.
We will close any issues or pull requests that have been inactive for more than 15 days, except those that match the following criteria:
- bugs that are confirmed
- pull requests that are waiting on other pull requests to be merged
- features that are a part of a GitHub project
Once your PR is accepted, you may delete the branch you created to submit it. This keeps your working fork clean.
You can do this with a press of a button on the GitHub PR interface. You can
delete the local copy of the branch with: git branch -D branch/to-delete-name
Don't despair! You should receive solid feedback from the Issue Moderators as to why it was rejected and what changes are needed.
Many Pull Requests, especially first Pull Requests, require correction or updating. If you have used the GitHub interface to create your PR, you will need to close your PR, create a new branch, and re-submit.
If you have a local copy of the repo, you can make the requested changes and
amend your commit with: git commit --amend
This will update your existing
commit. When you push it to your fork you will need to do a force push to
overwrite your old commit: git push --force
Be sure to post in the PR conversation that you have made the requested changes.
-
Bugs and Issues:
-
Miscellaneous:
-
Contributor Chat Support - for the freeCodeCamp repositories, and running a local instance