Epic Web Conf late-bird tickets are available now, hurry!

Get your tickets here

Join the community and network with other great web devs.

Time's up. The sale is over

First Timers Only

August 4th, 2015 — 5 min read

First Timers Only
First Timers Only
No translations available.Add translation

I've started doing something recently that's been really rewarding. I'm the maintainer of angular-formly a fairly popular library for forms with AngularJS. I've committed a lot of code and the library has 33 contributors right now. For at least five of these contributors, it was their first time contributing to an open source library.

I've tried really hard to make it easy to contribute to angular-formly. I've done all of the common things an open source project maintainer does and some less common things...

  • Set up the (often ignored) CONTRIBUTING.md
  • Try hard to organize the code and comment where necessary
  • Add an up-for-grabs label (and angular-formly is now on up-for-grabs.net)
  • Add a githook (using ghooks) that runs the tests and checks coding standards with eslint so people don't have the frustration of going back and forth on the PR.
  • Use npm scripts so people don't have to understand or globally install any build tools

I've even recorded screencasts to demonstrate how to get things setup. But what I didn't realize was that there was still something missing...


A few months back, angular-formly got a pull request from Koen Weyn who wanted to fix some IE8 compatibility issues with the project. He submitted a good PR (pull request), we iterated on it a little bit, and it got merged. He mentioned to me that it was his first ever GitHub pull request. That was a neat experience. It was cool to be a part of someone's first ever open source code contribution.

It wasn't until a few months later that I had an idea. While developing a new feature doing TDD (Test Driven Development) all the way (and loving it), I finished the tests and was about ready to start on the implementation. Then I had a thought: “Why don't I let someone else work on this? I know exactly what I'd do. I could do some hand-holding and help someone contribute to open source for the first time.”

Small tangent… I'm a happy father of two. When teaching or playing with my kids, sometimes I have to ask my daughter to give her brother a chance to answer a question. Many people are eager to please and help out. So when I throw out a soft-ball to my son, if I don't ask my daughter to let her little brother answer, she'll spout out the answer and he'll have a harder time learning/feeling the satisfaction of answering. I think that sometimes we adults can behave the same way.

So I decided to commit the tests, but skipped (so the build wouldn't fail) (using describe.skip from Mocha), then I pushed them up and added this comment to the issue:

screenshot of the issue comment

Make it as is easy as possible. Say exactly where the code needs to go and recommend a good approach.

The hard part of getting into open source for the first time isn't the implementation of a feature, but figuring out how to actually contribute code.

So I explain exactly what to do in the issue, and then I blasted it out on Twitter, Gitter, and Slack:

It wasn't long before I had several people reach out to me on all three mediums asking if they could take a swing at it. Finally with this PR, Stephen Bluck took his first step into the open source community.

It felt awesome! So I looked for opportunities to do this some more. I've had the chance to do this three more times and it's been rewarding for both me and the contributor each time. The project now has a first-timers-only label for this purpose. Shoutouts go to Douglas Mason, Devan Beitel, and Brian Macheski for taking up the challenge. For those of you who haven't had a chance yet, don't worry, there's definitely more to come…


Now, could I have finished it quicker and moved on my way if I'd just done it myself? Of course. But that's not what it's all about as an open source contributor. It's fun delivering good software that helps other people, but also realize that there are tons of people out there who just don't know where to get started.

Some of you may be asking yourself, “what if I (and other lib users) don't want to wait days for the feature?” From my experience, people are eager to try it out. At least one PR (sometimes several) is submitted, iterated on, and merged within a matter of a few hours.

I've thought back on my first pull request. It was nothing spectacular. It was really small. I learned how to use git and GitHub. It gave me an opportunity to figure out what contributing feels like. That's a rewarding feeling. As open source project maintainers, we are empowered with the ability to help newcomers feel this for the first time and contribute back. Let's do it!


A small plea

If you are an open source project maintainer, give this a shot. Add the label first-timers-only to your project so people can find it here. You might also consider referencing makeapullrequest.com. I think that we can be more friendly to newcomers in the open source community. You never know, you may find a new main contributor to the project or even a new life-long friend. Either way, the more people we get into open source the better. And by being open like this, we're helping “Bring Kindness back to Open Source.”

See you on the githubs and twitters!


Watch my Fluent Conf 2016 talk “The First Pull Request

https://youtu.be/HjgZQeMrw6c?list=PLV5CVI1eNcJgNqzNwcs4UKrlJdhfDjshf

Read next:

Kent C. Dodds
Written by Kent C. Dodds

Kent C. Dodds is a JavaScript software engineer and teacher. Kent's taught hundreds of thousands of people how to make the world a better place with quality software development tools and practices. He lives with his wife and four kids in Utah.

Learn more about Kent

If you found this article helpful.

You will love these ones as well.