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-node-bahmutov

v1.41.3

Published

My personal Yeoman generator for Node projects

Readme

generator-node-bahmutov

Creates good package.json for new Node projects

NPM

Build status semantic-release no sudden unpublish renovate-app badge

Install and use

npm install -g yo generator-node-bahmutov

In a new project folder

git init
git remote add origin <remote git>
yo node-bahmutov

Answer a few questions and you should be all set.

Features

See npm run output for the full list of scripts.

Alias

It is hard to remember yo node-bahmutov command, so I suggest using an alias to start a good NPM module. Run this command or place it in your ~/.alias file

# create new NPM module using Yeoman generator-node-bahmutov
alias new_module='yo node-bahmutov && yo node-bahmutov:release'

Make a folder, init new Git repo, set remote GitHub origin url and then call the alias

$ new_module

Answer 3 questions and you will be all set!

Recommended

Semantic release for GitHub

I recommend installing semantic release right away after bootstrapping the project, it will work nicely with the commit message format. We already include the semantic release badge in the generated README file, so you have no excuse

npm i -g semantic-release-cli
semantic-release-cli setup

Add version back into package.json, I recommend

"version": "0.0.0-semantic-release"

Semantic release for GitLab

If you use GitLab, you should take a look at semantic-release-gitlab

Generating Dockerfile

You can generate a Dockerfile with good defaults for running the current Node project inside a docker container. Based on Docker file in this gist.

yo node-bahmutov:docker

This generator also adds docker-* commands to the package.json to build the image, run and stop the container.

Generated docker image features

  • Runs Node application as a dedicated user (for security) with production environment set
  • Exposes port 1337 and sets the image environment variable PORT
  • Uses Yelp/dumb-init as default PID 1 process

You can see the full Dockerfile template.

Semantic release

You can setup semantic-release and include useful plugins like simple-commit-message and dont-crack by running

yo node-bahmutov:release

Assumes you have global semantic-release-cli tool already preset, if not

npm install --global semantic-release-cli

Test

Change into an empty folder, for example

cd /tmp
mkdir test-generator
cd test-generator
yo node-bahmutov

Or just run npm run e2e (assumes global yo install). The go into the folder /tmp/test-node-generator and run the project. You can even build the Docker image and try running the project inside the container.

Debugging

Run the generator with environment variable DEBUG set to "gen"

DEBUG=gen yo node-bahmutov

Development

Following the instructions. This module also reads answers to user questions from file answers.json if found in the current working directory. An example file is test/answers.json.

Remote

This generator assumes there is already a remote Git (probably GitHub or GitLab) repository where all code will live. Please create it first and then set it before running generator

git init
git remote add origin <remote git>

Small print

Author: Gleb Bahmutov © 2016

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

MIT License

Copyright (c) 2016 Gleb Bahmutov

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.