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

apibolt

v1.0.5

Published

Bootstrap a production-ready Node.js/Express backend in under 30 seconds

Downloads

587

Readme

APIBolt

Enable developers to bootstrap a production-ready Node.js/Express backend in under 30 seconds using a single command.

Key Features

  • CLI Framework: Built using commander.js and @inquirer/prompts.
  • Languages: Fully supports JavaScript (ES Modules) and TypeScript configurations.
  • Database Adapters: Supports MongoDB (Mongoose), PostgreSQL (Prisma ORM), or no database.
  • Authentication: Standard JWT Authentication flow complete with Signup, Signin, Signout, and Token Rotation (Access + Refresh tokens).
  • Logging Configuration: Structured console and file logging via Winston with HTTP route streams using Morgan.
  • Request Validation: Integrated schema checks using Zod or Joi.
  • Dockerization: Complete with multi-stage Dockerfile and custom docker-compose.yml.
  • CI/CD: Configurable GitHub Actions workflows.
  • Testing: Integrated unit and integration test frameworks using Jest and Supertest.

How to Run Locally

You can run the CLI directly using node (after running npm run build):

node dist/bin/index.js <project-name>

Alternatively, you can link the binary globally to run:

npm link
apibolt <project-name>

Or execute it via NPX once published:

npx apibolt <project-name>

Interactive Prompts Flow

Running the command starts an interactive session:

🚀 Welcome to APIBolt!

? Project Name: my-backend-api
? Language: JavaScript / TypeScript
? Database: MongoDB / PostgreSQL / None
? Enable JWT Authentication?: Yes/No
? Validation Library: Zod / Joi / None
? Enable Logging?: Yes/No
? Enable Docker Support?: Yes/No
? Enable GitHub Actions CI/CD Template?: Yes/No
? Enable Testing?: Yes/No

Once choices are entered, the engine:

  1. Dynamically compiles Handlebars files matching your parameters.
  2. Formats all directories and writes configuration variables.
  3. Automatically detects package manager (npm/yarn/pnpm) and installs dependencies.
  4. Generates Prisma clients (if using PostgreSQL).

Project Structure (Generated)

├── src/
│   ├── app.js           # Server application configuration
│   ├── index.js         # Port listener & DB startup
│   ├── config/          # DB config and setup
│   ├── controllers/     # Controller logic
│   ├── middlewares/     # JWT, RBAC, Zod/Joi validation, Error handlers
│   ├── models/          # User schemas (Mongoose) / cryptographic helper functions (Prisma)
│   ├── routes/          # Auth routes
│   └── utils/           # ApiError, ApiResponse, asyncHandler, logger utils
├── tests/               # Healthcheck & Auth integration tests
├── Dockerfile           # Multi-stage release container build
├── docker-compose.yml   # App and Database container link
└── package.json