DEV Community

Cover image for How to write a kickass README
James.Scott
James.Scott

Posted on • Updated on

Readme Template How to write a kickass README

Arguably the single most important piece of documentation for any open source project is the README. A good README not only informs people what the project does and who it is for but also how they use and contribute to it.

If you write a README without sufficient explanation of what your project does or how people can use it then it pretty much defeats the purpose of being open source as other developers are less likely to engage with or contribute towards it.

TL;DR - Too long? Skip to the end and use my template.

What is a README?

Essentially a README is a single text file (.txt or .md) that acts as the one-stop shop documentation for a project or directory. It is usually the most visible piece of documentation and landing page for most open source projects. Even a README file's name in all-caps is designed to catch your reader's attention and ensure it is the first thing they read.

There's evidence that READMEs date back as far as the 1970s. The oldest example I could find was this README for DEC's PDP-10 computer which is dated 27th November 1974. Although the origin of the name README is disputed, the two most popular theories are:

  1. Programmers of the original mainframe computers which came with punch cards, would leave a stack of paper instructions with “READ ME!” written across the front.

  2. The name is a nod to Lewis Carroll's Alice in Wonderland in which the main character Alice finds a bottle of potion labelled “DRINK ME” and cake labelled "EAT ME" which make her change in size.

What should you include in a README?

Ok, so what should an awesome README file contain? As a starting point, I would recommend you include the following key things:

1. Name the thing
Don't forget to give your project or feature a name. There are a surprising number of projects on GitHub that don't have a name.

2. An introduction or summary
Write a short two or three line introduction explaining what your project does and who it is for. Also leave out headings like 'Introduction', 'Summary' or 'Overview' - it's obvious this is an introduction.

3. Prerequisites
Immediately after your introduction add a section titled listing any prerequisite knowledge or tools anyone who wants to use the project might need before they begin. For example, if it runs on the latest version of Python, tell them to install Python. Here's an example:

Prerequisites

Before you continue, ensure you have met the following requirements:

* You have installed the latest version of Ruby.
* You are using a Linux or Mac OS machine. Windows is not currently supported.
* You have a basic understanding of graph theory.
Enter fullscreen mode Exit fullscreen mode

4. How to install the thing
Provide installation steps! It's amazing how many projects I've come across that only provide basic usage instructions and expect you to magically know how to install it. Make sure to break the installation down into numbered steps if it requires multiple steps.

5. How to use the thing
Add steps for how to use the project once the user has installed it. Make sure to include usage examples and a reference explaining command options or flags if you think they will be helpful. If you have more advanced documentation in a separate file or site, link to this from here.

6. How to contribute to the thing
Provide steps for contributing to the project. Alternatively you might want to create a contributor's guide in a separate file and link to this from your README if you want people to read it before contributing pull requests to your project.

7. Add contributors
Credit any contributors who have helped with the project in an author section. It's a nice way to make open source feel like a team effort and acknowledges everyone who has taken the time to contribute.

8. Add acknowledgements
Similarly, if you have used anyone else's work (code, designs, images etc) that has a copyright that requires acknowledgement, you might want to add that here. You can also acknowledge any other developers or institutions who helped with the project.

9. Contact information
You might not want to do this is you're an extremely private person but if someone has questions, wants to collaborate with you or is impressed enough with your project to offer you a job opportunity, it makes sense to have your contact details front and centre.

10. Add licence information
You definitely want to include licence information if applicable. Startups and other companies who rely on third-party software are unlikely to be able to use your project unless you provide this. Check out choosealicense.com or opensource.org for a list of licences you may be able to use.

Add flare to your README 🔥

If you really want to make your README stand out and look visually appealing you can do things like:

  • Add a logo: If your project has a logo, add this at the top of your README. Branding makes a project looks more professional and helps people remember it.

  • Add badges or shields: You can add badges and shields to reflect the current status of the project, the licence it uses and if any dependencies it uses are up-to-date. Plus they look pretty cool! You can find a list of badges or design your own at Shields.io.

  • Add screenshots: Sometimes a simple screenshot or set of screenshots can say far more than a thousand words. Be warned though, if you do use screenshots you will need to update them each time you update your project.

  • Use emojis?: A lot of projects seem to use emojis these days, although it’s up to you whether you want to use them. They can be a good way to inject a bit colour and humour into your README and makes the project feel a bit more human.

If you're using All Contributors to acknowledge contributions, you could use their emoji key to denote different contributions types:

* 🐛 for raising a bug
* 💻 for submitting code
* 📖 for docs contributions etc.
Enter fullscreen mode Exit fullscreen mode

This is what GitHub badges or shields look like for reference (No doubt you've seen them before!):

Shields.io badges

My template

I've created a template that covers most of the recommendations made in this post. Feel free to fork the repository, make suggestions to improve it or customize it for your own purposes! You can find my template on GitHub here.

Resources

If you want more advice on READMEs, I'd also recommend these resources:

Latest comments (46)

Collapse
 
aayushidroid profile image
Aayushi Sharma

I created My Github readme

Hi there 👋

I am aayushi Sharma. I Love ❤️ programming and currently working as Machine learning engineer.

Skills

  • Python
  • JavaScipt
  • React
  • Web Development
  • Machine Learning
  • Deep learning
  • Natural language processing
  • App Development

Things got bugs, gonna smash them one by one

codeperfectplus






Collapse
 
arturssmirnovs profile image
Arturs Smirnovs

What a nice article, check my tool here, i made this github readme generation tool. #justforfun

Collapse
 
vuelancer profile image
Vuelancer
  • I have created a youtube tutorial for markdown file for begineers!
  • Additionally, I have added a demo for github new profile-level README feature
  • youtube.com/watch?v=x0Boemw9teU
Collapse
 
danedens profile image
Dan Edens

Emojis are garbage.

Collapse
 
functor profile image
Santana16

Great article! Thank you. Question: would you insert the link to project's documentation and if so, where would it go?

Collapse
 
mnepita profile image
Martin Nepita

Thank you sir!

Collapse
 
hasii2011 profile image
Humberto A Sanchez II

hmm

Collapse
 
franksierra profile image
Frank Sierra

Nice!! Screenshots for me, are one of the most important things.

Collapse
 
hpbl profile image
Hilton Pintor

I've made an open source project to generate README section recommendations based on the most popular repositories for each language on GitHub. Would love yo get your thoughts and contributions: hpbl.github.io/WRITEME

Collapse
 
scottydocs profile image
James.Scott

Sure. Is there a repo link so I can submit a pull request or is it private?

Collapse
 
hpbl profile image
Hilton Pintor

Sorry for the delayed response, but yes: github.com/hpbl/writeme

Collapse
 
dietergeerts profile image
Dieter Geerts

Or you could just follow the standard-readme specs: github.com/RichardLitt/standard-re...

Collapse
 
scottydocs profile image
James.Scott

Cool, I didn’t even know this was a thing!

Collapse
 
guneyozsan profile image
Guney Ozsan

Nice read thanks!
At minimum I try to include these sections:

  • Title
  • Log line
  • How to install for development
  • How to install for usage/production
  • How to contribute
  • Style guide source
  • License
  • Contact and other links
Collapse
 
guneyozsan profile image
Guney Ozsan • Edited

I feel like screenshots are a little bit overlooked in repositories. I especially find gif crops that display core features very useful. They are focused and attractive while it takes only a few seconds to grasp context. When applicable screenshots and gifs can provide a nice motivation to drive people into the project.
Sample gif

Collapse
 
tterb profile image
Brett Stevenson

This is a great (and necessary) introduction to writing helpful READMEs.
The only thing I would add is that I've found GIFs to be even more helpful than screenshots for showing off the functionality of your project.

Collapse
 
scottydocs profile image
James.Scott

I have used GIFs in the past (and yes, can be a great way to highlight functionality). You just need to mindful that you’ll need to update them if anything visual changes in your project (like with screenshots).

Collapse
 
benracicot profile image
Ben Racicot

Any extended advice on what legal to put in a readme? Especially wondering about the situations where you do not want anyone to be using the code. "closed source" if you will.

Collapse
 
scottydocs profile image
James.Scott

This is a great question (you also reminded me to add choosealicense.com to the licenses section!) but I don't have an answer for you I'm afraid and I don't want to give you bad advice.

However you may find some useful info in this chapter on Non-Open Source Licenses and The Legal Side of Open Source. Hope that helps!

Collapse
 
benracicot profile image
Ben Racicot

Wow, great resource nonetheless. You've pointed me towards a "Classic Proprietary License" for projects that contain open source code but is not licensable. Thanks for the great article and reply!

Collapse
 
devint profile image
Quétier Laurent

I'm happy to see good tips to add with my already good practices 😜
Thank's for this post.