SUBMIT

How To Get Started With Open Source Projects

By

May 14 2021, Published 4:55 a.m. ET

Share to XShare to FacebookShare via EmailShare to LinkedIn

And, while experimenting with open source projects will most likely expand your skillset, it’s not just good for you. Open source software plays an important role in the tech industry at large. For one thing, it provides the tech industry with transparency into up-and-coming work while also being a stepping stone for future innovations. And open source projects also bring together developers, designers, product managers, and more into a virtual and in-person community. This community is vital to keep building technology and also to help grow developers.

Navigating the open source software space can be daunting if you’re new to tech. In this article, we’ll cover the basics so you can feel ready to get started.

WE’LL GO OVER:

What is open source?

Open source software means anyone can view the code and use the code to contribute to the original project or create something else entirely. A lot of open source projects are available on popular hosting sites like GitHub)GitLab or SourceForge.

So how did it all start? Christine Peterson suggested the phrase “open source” at a strategy session held in 1998. The session was galvanized by Netscape’s earlier public release of the source code behind the web browser Mozilla. It was a session to acknowledge and further encourage the growing community around shared software. Shortly after, Eric Raymond and Bruce Perens founded the global non-profit Open Source Initiative (OSI)

Article continues below advertisement

Nowadays, the OSI works to protect the open source community, projects, and the definition of open source software itself. The OSI’s definition also includes certain distribution standards that you will need to uphold if you build with open source software.

What are some examples of open source projects?

There are many open-source projects out there, and many of them are likely tools you have used before. These are some popular products that you may be surprised to know are open source.

Article continues below advertisement

How do open-source projects work?

Before we jump into the possible contributions you can make to open source software projects, let’s talk about where the projects exist and how you can access the code.

There are different places on the web to host and maintain your code. You want your code hosted so it’s not solely living on your computer. Your computer could break down and you could lose your coding projects forever. Thankfully, the web has third party web applications like GitHub, Bitbucket, or GitLab, to name a few, to host your projects. Each project on the hosting platform is its own code repository, also informally called repo.

Open source projects have their code hosted on third party web applications as well. With a version control system, you can modify the code of these projects. One of the popular version control systems is Git.

Using Git, you can fork the code repository to your computer. Let’s say you were testing the open source product and noticed a bug. You’re amazing and you tracked down which file has the broken code that causes the bug. On GitHub, you can see the file and you can see the previous version of the file with the working code.

Article continues below advertisement

You make the intended changes on your own branch and then push up your changes. After your changes are visible on the hosting platform, you can open a pull request to the main branch of the project. A pull request shows the changes you made to the code per file of the repo.

A maintainer, usually the authors and/or owners of the repository, will usually give you feedback on your changes. Once the pull request is approved, the changes will get merged into the main branch — which means you made your first contribution to an open source project!

This first contributions repository walks you through the necessary steps of being an open source contributor with git. This includes forking, making a change, and pushing that change to the repository with git. These steps are important to understand how to contribute to software projects, open source or not.

Article continues below advertisement

How to get involved in open source as a beginner

The source code for open source projects is available to anyone — from the developer just starting out to the developer with decades of experience. So you can contribute at any point in your development career and become a member of the open-source community! Here are a few things to look out for as you search for an open-source project to get involved with.

wp content/uploads///Screenshot    at
Article continues below advertisement

What To Look For In A Project

1. AN OPEN SOURCE LICENSE

The code repository should have an associated license. For example, the MIT license. is a popular one. This license determines if the project is open source or not. So it’s important to find the license before working with the project. The OSI provides more information and a list of more popular licenses here.

2. EASY TO READ AND COMPREHENSIVE DOCUMENTATION

Documentation includes things like project README files and contributing guidelines. README files provide information around the code repository like its purpose, the programming languages and libraries used to build it, and in the case of open source projects, how you can contribute. At times, how well written the documentation is will be a good indication of how easy it is to work with the project because documentation is key to understanding the details, technology, and functions of a code repository.

3. RECENT ACTIVITY

If there are recent responses to issues and pull requests from maintainers, then there’s more likelihood that your changes will be accepted or your issue will be addressed.

4. ASSOCIATED HACK NIGHT OR AN ACTIVE SLACK CHANNEL

Article continues below advertisement

One of the common ways open source is described is as a community. If you’re looking for a community, see if there is a hack night you can attend or a slack channel you can join that supports project contributors. At a hack night, you can potentially work with someone else on project issues and features. For example, the Chicago Civic Hacknight has this list of open source projects. They also have coding breakout sessions where you can work on a project or pitch a new one. Look for civic hacknights in your city.

5. TAGGED ISSUES AND FEATURES

On a hosting platform like GitHub, you can search for different open-source projects. This list of projects are particularly welcoming of beginners. On a particular project, you can see requests for improvements or fixes posted as “Issues.” These issues usually have tags to help developers filter what they can and want to work on. For example, for beginners, pick a project that has issues with the `good first issue` or “good for beginners” tag to work on. You can also peruse the requested work by the languages you know like HTML.

6. PIQUES YOUR INTEREST

Article continues below advertisement

Once you submit a pull request for a change to the repo, there may be back and forth between you and the maintainers with feedback about your code. Picking a project that interests you will hopefully motivate you to consistently respond in a timely manner and motivate you to become part of that project’s community.

Ideas For Contributions

If you would like to contribute to a code repository but don’t feel comfortable working on issues or features just yet, here are some other ideas on how to contribute.

1. UPDATE DOCUMENTATION

At times, you’ll notice steps or information that are not included in the current documentation for the project. For example, maybe you had to run a command that was mentioned to you at a hack night with other community members but it wasn’t in the docs. You can update the documentation to help the next person working with this project.

2. POST AN ISSUE IF YOU FIND ONE

Article continues below advertisement

Once you start interacting with the open source software, maybe you notice a bug or potential improvement to the user experience. You can help the maintainers by posting an issue to the issues list for the project even if you’re unsure how to fix it yourself. Provide as much information you can succinctly so the developer who picks up the issue knows how to recreate it and understand the problem.

3. FIX ACCESSIBILITY RELATED ISSUES

Make the web more accessible and sharpen your HTML skills by making accessibility updates to open source projects.

4. MAKE THE CODE INCLUSIVE

Developers are opting for words like “primary,” “replica,” “allowed list,” and “blocked list” instead of “master,” “slave,” “blacklist,” “whitelist,” and “redlining” in codebases. This is an effort to make coding inclusive by removing words that reinforce racist hierarchies.

5. USE THE PRODUCT TO BUILD SOMETHING ELSE

Use jQuery, for example, for your portfolio. Get comfortable looking over API documentation and seeing how to work with an open source library to make your website more interactive.

Article continues below advertisement

How To Be A Good Citizen Of The Open Source Community

When you create a pull request (PR), make sure you communicate your changes. If you’re making a front-end change, take screenshots to put in the pull request to show how your code works and how the change has updated the user interface. Regardless of being a front-end or back-end change, include a high-level description of your changes and the impact.

Certain projects will have tests and documentation around writing tests. Along with ensuring that the current tests are passing, follow the testing guidelines and expectations of the project.

This guide from Github provides more information on making your first contribution. It also supplies you with more ways to contribute, even beyond coding.

Open source projects to contribute to, even if you’re new to tech

You are not alone if you are new to tech and are wondering where to get started. It can be overwhelming to start coding without knowing what to build or what all it takes to build a project. There are sites that provide information and more projects for beginners like the following:

If you’re interested in open source but want to get a foundation in technical skills first, consider Skillcrush’s Break Into Tech program — a personalized course of study for total beginners, with fast tracks for learning design or development and getting ready for the job market ASAP.

This was written by Neely Kartha and originated on Skill Crush.

Ambition Delivered.

Our weekly email newsletter is packed with stories that inspire, empower, and inform, all written by women for women. Sign up today and start your week off right with the insights and inspiration you need to succeed.

Advertisement

Latest The Main Agenda News and Updates

    Link to InstagramLink to FacebookLink to XLinkedIn IconContact us by Email
    HerAgenda

    Opt-out of personalized ads

    Black OwnedFemale Founder