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

a-dope-boilerplate

v0.5.3

Published

A boilerplate Express.js project that automatically reformats your code using Prettier and Eslint.

Readme

Express-Webpack-Prettier-Boilerplate

Known Vulnerabilities dependencies Status FOSSA Status

A very opinionated boilerplate to help you get started with Express, Webpack, ESLint, ES6 and Prettier using Airbnb's Javascript Guidelines.

Why?

I got tired of having to take half a day to set up my development environment.

Installation

$ npm install a-dope-boilerplate

Get Started

Create your project in the current working directory:

$ adp ./directory-to-install

or

$ adp ./

To create your project in a directory that isn't in your current working directory:

$ adp /Absolute/Path/To/Directory

Navigate to the directory where you created the project and run:

$ npm install

Files and Project Structure

  • The files and project structure from Express Generator with EJS as the templating language and CSS for stylesheets

In addition to the above mentioned files:

  • webpack.prod.config.js
  • webpack.dev.config.js
  • README.md
  • package.json
  • ecosystem.config.js (So you can use PM2 with Heroku)
  • .prettierrc
  • .prettierignore
  • .gitignore
  • .eslintrc.json
  • .eslintignore
  • .env
  • .editorconfig

NPM Scripts in package.json

 "scripts": {
   "clean": "rimraf DIRECTORY TO CLEAN OUT",
   "start": "pm2-runtime start ecosystem.config.js --env production",
   "start:prettier:dev": "npm-run-all --parallel open:src:dev prettier-watch",
   "clean:build:dev": "run-s clean build open:src:dev",
   "open:src:dev": "nodemon bin/www",
   "prettier-watch": "onchange '**/*.js' -- prettier --write {{changed}}",
   "build:dev": "webpack --config webpack.dev.config.js",
   "build:prod": "webpack --config webpack.prod.config.js"
 }

To run any of these by themselves: $ npm run <Command>

For example, to start the express server with nodemon during development:

$ npm run open:src:dev

Resources

EditorConfig, ESLint, and Prettier IDE Plugins

  • Most modern IDEs have plugins for ESLint, Prettier, and EditorConfig. If you install them you can configure your IDE to use the files from this boilerplate.

Issues and Requests

If you find any bugs, have a question about usage, or would like to request a feature submit an issue HERE

License

FOSSA Status