Hi friends 👋 Today, let's look at how to write a KILLER file. GitHub README The README is the first touch point with anyone new to your repo. . A well-developed README can inform, engage, and invite participation This is particularly useful when you’re launching a new project or at times when it is critical that developers engage with your repo. A good example of this is when you submit a repo to Quine's Creator Quests, which is a new type of open-source “bounty” that rewards developers for creating cool new repos that the community loves. In a Creator Quest, having a well-written README could literally help you take a prize home. 💸 1️⃣ README... What is it? 🔮 The README file, usually a or file, is the most important file in the project. It is the landing page of your open-source project and is the most visible piece of documentation. .txt .md Here's an example of a README from the Hoppscotch project. Your README is . where you set the tone for your project This is why there are a couple of elements that should be included. ⬇️ 2️⃣ The 10 Building Blocks 🧱 READMEs can be written in various ways; some better than others. Below are the main types of sections you should be able to find in a professional README. If the below buckets are relevant to your project, I recommend you try to add these into your README. 👇 A significant amount of repos don't have good names. Spending a bit of time thinking of a memorable name is always a good strategy. 1. Coming up with a name: A summary explaining the purpose and target audience of your project. 2. Write an introduction: Many repos fail to add this section. A well-organized table of contents helps make your repo clear and understandable. 3. Table of Contents List out the various step-by-step installation instructions. ✨ 4. Prerequisites & Installation Instructions Clarity here is essential. This section focuses on how to use your project with examples and optional commands. One method I like is adding a and how any user could use it. 5. User Guide / Demo: screen recording of how to run the project If you wrote a documentation, an FAQ or a space that can act as a , write about it or add the link to it here. 6. Documentation / Help Center: Help Center Explain briefly how to Contribute to your file and add a link to your CONTRIBUTING.md file. Here or in a separate section, you can also take the opportunity to list your contributors and thank them. 7. Contribute: Use or help obtain external resources. This section is needed only if it is relevant to your repo. 8. Acknowledgements: : If you are trying to grow your project and build collaboration, this section is very useful. 9. Contact information : This refers to the type of license you have picked for your project. It is essential to clarify how others can use your content. 👍 10. Permission Information 3️⃣ Beautify it 💄 READMEs can be written in various text formats, with Markdown being the most common one. Markdown allows you to use simple, plain-text syntax, enabling the creation of headers, lists, links, and other elements to make the document more readable and organized. , which widens the spectrum of things you can do. 👇 Markdown also supports HTML code Logo If you have built a logo for your project, adding it at the start of your README is standard practice. To do this, add and modify the below code in your README: <p align="center"> <!-- You can add your logo in the _src_ below --> <img src="https://www.amug.com/wp-content/uploads/2016/09/you-logo-here-300x106.png" /> </p> Enter fullscreen mode Exit fullscreen mode Badges You often find good READMEs to provide badges in their introductory section. These can look like this: As you can see, these highlight some areas the maintainer(s) want to shed light on. Here's how you add badges to your README: static <p align="center"> <!-- You can add your badges here --> <!-- If you have never added badges, head over to https://img.shields.io/badges/static-badge, follow the instructions and generate URL links to add below --> <img src="https://img.shields.io/badge/STARS-20K-green" /> <img src="https://img.shields.io/badge/FORKS-15K-blue" /> <img src="https://img.shields.io/badge/npm-v.0.21.0-red" /> <img src="https://img.shields.io/badge/LICENSE-MIT-green" /> </p> Enter fullscreen mode Exit fullscreen mode : Note There are advanced dynamic options we won't get into here. Icons Icons have grown quite prominent in recent years. You can add them to your or in your section. You can find an example of the icon for X ( ) and Linkedin. Contact Information Tech Stack formerly Twitter To build your own: 1️⃣ Head over to this repo here 2️⃣ Find the and/or you its link Socials Tech Stack Copy 3️⃣ the link into the shown below Paste href <p align="left"> <!-- Add your own socials inside "href" --> <a href="https://twitter.com/fernandezbap" target="blank"><img align="center" src="https://img.shields.io/badge/X-000000?style=for-the-badge&logo=x&logoColor=white" alt="fernandezbap" /></a> </p> <p align="left"> <a href="https://www.linkedin.com/in/baptiste-fernandez-%E5%B0%8F%E7%99%BD-0a958630/" target="blank"><img src="https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white" alt="https://img.shields.io/badge/LinkedIn-0077B5?style=for-the-badge&logo=linkedin&logoColor=white" /></a> </p> Enter fullscreen mode Exit fullscreen mode 4️⃣ Advanced Tips 🛠️ Interactive content 🎥 You can consider embedded videos or widgets for interactive content. In the section of your README, you can embed a video. Demo Sometimes, videos' sizes are too large, and it makes more sense to upload the video on YouTube and then link things out. ⭐️ TIP: If you want to make it more visual, here's the code to add a picture/video thumbnail that redirects to your Youtube video once you click on it. <p align="center"> <a href="THE LINK TO YOUR YOUTUBE VIDEO HERE"> <img src="YOUR IMAGE/VIDEO THUMBNAIL SOURCE HERE"/> </a> </p> Enter fullscreen mode Exit fullscreen mode Markdown Mastery ✨ There are many advanced Markdown features to make your README look good. You can check out this cool that lists some of these features. repo A particular one I like is the or more commonly known as toggle list the collapsible section. They can be particularly useful to keep your README looking concise and slick. Here's an example: Here's the MARKDOWN template to build your own toggle list: <details> <summary>Toggle List Example</summary> ### Heading 1. ABC 2. DEF * Hello </details> Enter fullscreen mode Exit fullscreen mode Bonus Tip 🎖️ If you want to give recognition to your contributors in the , you should check out . Contributors section AllContributors You can leverage its bot to automatically add all your latest contributors to your README. Here's an example of what you can get: You should also check the , which enables you to categorize different types of contributions. ⚡️ Emoji Key Documentation 5️⃣ Leverage Pre-Made Templates 📝 Are there websites that build READMEs for you? 🤔 Absolutely! You can find a plethora of README generators out there. I have scanned and picked out my favourite three for you: 1️⃣ README templates 2️⃣ ReadME Generator by Vercel My advice with these would be to use them as a foundation and then customize them. ⭐️ Do you have a README template for me? 👀 I got you friend. 🫶 You can find my ready-made template . here To start using it: 1️⃣ the repo Fork 2️⃣ Hover to the section of the README Edit 3️⃣ Begin filling in your information ✍️ If you find this template useful, I'd be grateful if you could by . 🌟 give it some love starring it Creating a good README file is an important skill. 🛠️ How you build it can be a determining factor in your repo's success. Make sure to share your project and its polished new README in the comments section! You can also leverage this new skill to build cool coding projects and compete to get paid. 🙌 If that's of interest, log into Quine and discover , a place to code, have fun and bag some awesome rewards! 💰 Quests See you next week. Your Hackernoon buddy, Bap 💚 Also published here.