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 🙏

© 2025 – Pkg Stats / Ryan Hefner

brm

v2.1.1

Published

A generator for Boiler Room projects

Downloads

56

Readme

Boilermaker

A generator for creating projects and various components, designed with the Boiler Room stack: Boiler Room Builder and Boiler Room Runner. Boilermaker uses our standard toolchain but cleanly excludes the parts that your project doesn't need, leaving you to focus on writing the code that matters.

In other words, where Boiler Room got you from zero to dev, Boilermaker gets you from zero to :shipit:.

Install

NPMers

npm i brm -g

Yarners

yarn global add brm

Usage

Everything begins with running brm create. When creating a project, a new directory will we created. For the other commands, run from the root of your existing project.

Project

This will take you through a sequence of questions for customising your project, and then build out a project based on your answers. Install your dependencies, run yarn start, and you're set. For example:

brm create
❯ project - Create a new boiler room project
  Stateless - Create a new stateless view component
  Action & Reducer - Create an Action & Reducer set
? What is your project called? My New Project
? Enter a short project description (optional): My description
? Will this project use Prismic for a CMS? Yes
? Do you use Constructicon? Yes
? Do you use Supporticon? Yes
? Will you be writing tests in this project? Yes
? Will you be deploying this project using Buildkite? Yes
? Need a repo made? No
cd my-new-project && yarn
yarn start

Repo Creation

When creating a project, Boilermaker will offer to create a repository for you as well. In order to do this, a GitHub Personal Access Token is required, with the repo scope enabled. This token must be available under the BRM_GITHUB_API_TOKEN environment variable.

Stateless Component

After answering the questions a component will be created, along with any necessary extra files, based on your answers.

Action & Reducer

After answering the questions a store directory will be created where you selected, containing the Redux action and reducer. If a source/store/index.js file is found, it will be modified to include the new reducer.

The default action created includes a basic (invalid) GET request to a URL. Make sure you update this to what you need!