How to Contribute to Node.js Core

Node.js is an open-source framework and developers around the globe contribute to its development. Even wondered how to contribute to Node.js core? In this article, we are going to learn how to contribute to Node.js core step by step.

Step 1: Fork the Node.js Project

First, you need to fork the official Node.js project repository. To do the same, head over to the official Node.js repository, located at https://github.com/nodejs/node, and fork the project to your Github account.

How to contribute to Node.js project

Step 2: Setup local git repository

After doing the fork of the project, clone the project in your development machine.

git clone [email protected]:YOUR_GITHUB_USERNAME/node.git

For example, if your Github user name is dev123, then the command will look like this.

git clone [email protected]:dev123/node.git

Then, switch to the folder.

cd node

In order to keep our source code updated with the latest changes, we need to change the upstream to the official Node.js repository, run this command to do the same.

git remote add upstream https://github.com/nodejs/node.git

Now, pull the code changes and update your local repository using the following command.

git pull upstream --rebase

Step 3: Test and build Node.js

In order to perform this step, you need to have the following software installed in your machine.

  • GCC
  • Clang
  • Python 2.7
  • GNU Make

You can build your Node.js project using the following command.

./configure && make -j8 test

-j8 flag will run 8 concurrent compilation jobs to save the build time.

It may take some time to perform the build. Once your build is finished, you can proceed to the next step.

Step 4: Find relevant issues to work on

Head over to the official Node.js repository issues page and find an issue to work. At the time of writing this article, there are 1045 open issues.

If you are a beginner, you can check out the “good first issue” label to find out the issues suitable for beginners. Find some and work on it. Follow the next step once you are ready to merge your contribution to the Node.js core repository.

Step 5: Submit your Pull Request

Test and push your changes to your repository, and head over to Github. After your contribution is pushed to Github, a green merge button will appear at the top. Click on it to open a pull request, and wait for other contributors to approve/request changes in your pull request.

Pankaj Kumar
Pankaj Kumar
Articles: 207