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

npm-module-checklist

v1.6.0

Published

Steps to check when starting, working and publishing a module to NPM

Readme

npm-module-checklist

Steps to check when starting, working and publishing a module to NPM

You can add the included CHECKLIST.md into your project, or copy it into your README.md; then check items off as you go. Use one of the two badges to let everyone know your module is solid.

npm checklist badge badge alternate

[![badge 1](https://img.shields.io/badge/follows-npm%20checklist-brightgreen.svg)](CHECKLIST.md)
[![badge 2](https://img.shields.io/badge/%E2%98%B0-%E2%9C%93-brightgreen.svg)](CHECKLIST.md)

Example: manpm

Checklist

  • [ ] watch the egghead.io series How to Write an Open Source JavaScript Library; it is extremely useful for any NPM project (OSS or closed-sourced).
  • [ ] start unit testing right away, pick your unit testing framework
  • [ ] start linting code to prevent obvious problems, like misspelled variable. eslint, jshint, jscs or all of them together gulp-lint-everything
  • [ ] run linting and unit tests on each commit locally. pre-git, ghooks
  • [ ] validate commit message using pre-git or commitizen with validate-commit-msg. This enables other tools, like intelligent release notes.
  • [ ] show the project's GitHub open issues on demand or on commit using git-issues
  • [ ] setup continuous integration server, like TravisCI or CircleCI (or wait until you set up semantic-release which will set up TravisCI for you).
  • [ ] add badges to the README to make broken unit tests or out of date dependencies visible
  • ci server badge
  • published NPM package info NodeICO
  • production and dev dependencies being out of date david-dm
  • semantic release badge
  • [ ] check module published size and white list only necessary files, tutorial
  • [ ] setup semantic-release to automate publishing and avoid breaking semver. This is important, but is currently broken in too many projects. Even this checklist is using semver!
  • [ ] avoid surprizes by using exact versions of the top level dependencies. Use save-exact NPM setting and exact-semver to enforce it.
  • [ ] setup a script to reliably update out of date dependencies using next-update
  • [ ] setup automatic pull requests when newer versions of dependencies appear greenkeeper.io
  • [ ] if writing a CLI tool, add a way to check if it is out of date and should be upgraded; update-notifier
  • [ ] catch missing or invalid package.json values using grunt-nice-package or fixpack
  • [ ] write simple installation commands for your module
  • [ ] write "quick intro" example showing the main feature of your module
  • [ ] add CONTRIBUTING.md file with clear guidelines how others can add new features or fix bugs in your module. Atom editor and lodash have excellent examples to follow. When GitHub finds a CONTRIBUTING.md file it shows a message to anyone opening an issue.
  • [ ] generate documentation automatically. xplain is my own tool for JS to HTML/Markdown generation
  • [ ] place most of the public API documentation in README file for simple retrieval. This allows other developers to find relevant sections right from the command line manpm or by looking up npm home package-name

Source: npm-module-checklist

Advanced

If you include the separate checklist file, you can automatically insert / update it inside the README. Setup the markdown update as a step in your build process using update-markdown.

Contributing

Everyone is welcome to submit pull requests with new content. I just ask to check before submitting a new content that:

  • it is not covered by an item that already is in the list.
  • if there is an open issue, please reference it in your commit message. You can even check the list of issues from command line before committing npm run issues.
  • has links to an explanation why it is a good idea and tools that help accomplish it.

Contributors

Small print

Author: Gleb Bahmutov © 2015

License: MIT - do anything with the code, but don't blame me if it does not work.

Spread the word: tweet, star on github, etc.

Support: if you find any problems with this module, email / tweet / open issue on Github