npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

generator-make-readme

v1.0.5

Published

Quickly generate standards-compliant READMEs for AffiniPay open source software projects

Downloads

18

Readme

generator-make-readme

standard-readme compliant

Quickly generate standards-compliant READMEs for open source software projects.

Overview

This Yeoman generator conforms to the standard-readme specification with some added customizations to comply with AffiniPay's supplemental README standards. It creates a minimally compliant standard README for your open source software project.

Table of Contents

Background

Github is an important platform for collaborative software development. It's also a channel for AffiniPay to share tools with our partner/developer community. We need to provide concise, accurate, and standardized documentation for all AffiniPay open source projects.

Standardizing our READMEs makes creating and maintaining them easier, promotes a better developer experience, and helps us earn trust within the partner/developer community.

An effective README thoroughly explains:

  • What a project does (with context)
  • What a project looks like in action
  • How to install it
  • How to use it (with working examples)
  • All API methods/functions

This project is a customized version of Richard Littauer's generator-standard-readme project, but it follows the same specification.

Installation

This generator requires node, npm, and yeoman.

You can install it by itself by running:

npm install --global generator-make-readme

With Yeoman

You can also install it as a standard Yeoman generator by installing yo:

npm install --global yo

Usage

$ make-readme

With yo:

yo make-readme

This will write a file (README.md) to the local directory after you follow the prompts in a terminal.

Fields to fill out

The make-readme generator prompts you for information to create a README outline that contains all optional and required sections. These sections contain placeholder text and examples that you must modify before publishing the README.

Prompts include the following:

  1. What is the name of your project? - Defaults to the name of the repo.
  2. Summarize your project in one sentence: - You can add more detail later in the Overview and/or Background sections (if necessary).
  3. Do you have a banner image? - Optional.
  4. Do you want a standard-readme compliant badge? - Optional.
  5. Do you want a TODO dropped where more badges should be? - Optional.
  6. Do you want to add a prioritized Security section to the top of the README? - Optional.
  7. Do you need a Configuration section? - Optional.
  8. Do you need a Background section? - Optional.
  9. Do you need an API section? - Optional.
  10. Are pull requests accepted? - If true, adds a Contribute section with default guidelines.
  11. Is an MIT license OK? - If false, enter the license type in the next prompt (e.g., ISC). Make sure to update the license file in the repo.
  12. Who is the license holder? - The default is AffiniPay LLC.

Contribute

Contributions in the form of GitHub pull requests are welcome. Please adhere to the following guidelines:

  • Before embarking on a significant change, please create an issue to discuss the proposed change and ensure that it is likely to be merged.
  • Follow the coding conventions used throughout the project, including 2-space indentation and no unnecessary semicolons. Many conventions are enforced using eslint.
  • Any contributions must be licensed under the MIT license.

License

MIT © AffiniPay LLC