DEV Community

Diego (Relatable Code)
Diego (Relatable Code)

Posted on • Originally published at relatablecode.com on

Developer Blog: Nuzlocke Tracker — Part 5 — README

Developer Blog: Nuzlocke Tracker — Part 5 — README

splash
Photo by Studio Media on Unsplash

It’s been a while since I added an entry to the series, for the past few months it’s mostly just been working through submitted bugs and added small features! But after some conversations, I figured I’d add another entry explaining the thought process for working through the README file.

A good readme can give a base explanation of the intention and proposed solution of the project as well as give a quick guide on how to start contributing to the application (if it’s open-source)

Here’s the README to check it out while reading through this short blog post.

Status checks

At the very top of my README, I opted into leaving some quick status badges for several of the third-party libraries I have associated with my app: codecov, cypress, codeql, netlify, and several Github status points!

image

I feel like this gives a pretty sweet overview of the health of the app!

About

I split this section up into two sections. A quick list of the main features of the app and a ‘How it works’ section with gifs and screenshots! I feel like these screenshots give a much more tangible view of how the application works. These can be hooked up pretty easily using Imgur and giphy.

I upload the necessary gifs and images and simply link them through the markdown:

<!-- Example Gif --> 
![til](https://media.giphy.com/media/ncqqOirC9cs0ivsM0n/giphy.gif) 

<!-- Example Image --> 
![Imgur Image](https://i.imgur.com/viBwwxQ.png)
Enter fullscreen mode Exit fullscreen mode

example images

Quickstarts

Afterward, I include several sections that help other contributors get quickly started with the app with the following sections:

  • Prerequisites —I quickly lay out the CLI commands to get started
  • Running the tests — Commands needed to double-check over the code and make sure everything is still A-okay
  • Roadmap — Just a small section linking to the issues page for the Github repository to know which issues can be worked on
  • Deployment — Brief summary on how the project is deployed to netlify
  • Versioning — Explanation of how versioning works. In this case, SemVer is used as it seems to be the industry standard

Contributing

This is probably one of the more important sections of the entire README where you can reference, at least in my case, a CONTRIBUTING.md for a more in-depth explanation of how to contribute to the project.

Github can help out with a generic format but I suggest making adjustments respective to your project.

Ideally, this section should reference the CODE_OF_CONDUCT and any special steps needed for the pull request process.

Miscellaneous

At the very end, I added a small section to be able to contact me as well as some legal information as the app is pokemon related in nature.

And that’s it! Let me know what you think about the README or if you have any other details that you include in your project’s READMEs

Originally published at https://relatablecode.com on January 9, 2022.

Top comments (0)