Welcome to "Learn to Contribute", a project designed to help you familiarize yourself with the open source contribution workflow on GitHub!
- Prerequisites
- Setup Instructions
- Tasks
- Submitting Your Changes
- Influences
- What's Next?
- List of Contibutors
- Contact
- License
Before you start, you'll need to install Git, Node.js, and npm.
Git is a version control system that lets you manage and keep track of your source code history.
- For Linux users, you can install Git via your distribution's package manager. For example, on Arch you would use the command:
sudo pacman -S git
and in Ubuntu/Debian:sudo apt-get install git
- For macOS users, you can install Git via Homebrew with the command:
brew install git
- For Windows users, download Git from Git for Windows and follow the installation instructions.
Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine, and npm is a package manager for Node.js.
- You can download Node.js and npm from the official Node.js website. This will install both Node.js and npm on your machine. Follow the instructions on the website to install them.
- Fork this repository by clicking on the "Fork" button at the top-right corner of this page. This creates a copy of the repository in your GitHub account.
- Clone your forked repository to your local machine with the command:
git clone https://github.com/your-username/learn-to-contribute.git
Replace 'your-username' with your GitHub username.
- Navigate to your project folder and install the necessary dependencies. If you are solving the Easy difficulty issue, you don't need to run
npm install
.
cd learn-to-contribute
npm install
- Create a new branch with the command:
git switch -c fix-tests
We present two tasks of varying difficulty. You're free to choose either the easy or medium issue, depending on your proficiency in HTML or JavaScript. Don't worry if you're a beginner with JavaScript; you should still be able to solve the problem.
EASY ISSUE:
Your task is to insert an h1 tag with the name John Doe
above the h2 tag in the index.html file.
Note: Only the index.html file needs modification for this task.
MEDIUM ISSUE:
This issue involves a simple Book Library application written in JavaScript. The application allows you to create a book, get information about a book, update a book's information, and delete a book. There are some Jest tests for this application, but they're failing...
Your task is to make these tests pass!
This project involves using the terminal, but don't be afraid! If you're new to the terminal, it's just another way to interact with your computer. All the commands you'll need are provided in this README. By following along, you'll get comfortable using the terminal in no time.
You'll need to inspect the tests in tests/library.test.js, figure out why they're failing, and make the necessary changes.
Running npm test
will give you some helpful information about what is wrong with the tests. Once all your tests are passing, you are done!
Note: Only the library.test.js file requires modification for this task.
Once you've made the necessary changes and all the tests are passing, you're ready to submit your changes!
- Stage your changes with the command:
git add <file-that-you-changed>
- Commit your changes with the command:
git commit -m "Fixed failing tests"
- Push your changes to your forked repository with the command:
git push origin fix-tests
Once you've pushed your changes to GitHub, you're ready to create a pull request. Go to your forked repository on GitHub.
-
You should see text "learn-to-contribute had recent pushes" and button "Compare & Pull request" next to it.
-
Click the "Compare & Pull request" button to proceed to the pull request page of the original learn-to-contribute repository.
-
Fill in the title and description boxes to inform what you did to make all of the tests pass successfully.
-
Finally, click "Create pull request" to finish creating the pull request.
Congratulations on making your first open source contribution on GitHub!
Sit back and wait for a response and feedback of the pull request. If everything is working fine, you should get the pull request merged.
After the merge, actions-user bot will reset the file for the next contributor.
This project was inspired by a number of fantastic resources designed to help newcomers make their first contributions to open source. In particular, we would like to acknowledge:
- First Contributions: A hands-on guide to making your first open source contribution.
- Contribute To This Project: A project that encourages contributors to add their own profile information.
- Contribute to Open Source: A project that simulates the GitHub workflow to help beginners get their first taste of open source.
I highly recommend checking out these projects if you want to learn more about contributing to open source!
Congratulations on making your first open source contribution! If you're looking for more ways to contribute, I invite you to check out my other projects. Just click my username to find more. These projects contain real issues that you can help resolve. I look forward to seeing your contributions!
Massive thanks to all of the these fine individuals who contributed to this project!
For any queries, feel free to open an issue or reach out to me at niko.hoffren@gmail.com.
This project is licensed under the terms of the MIT license.