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

forge-backend

v1.0.1

Published

CLI to scaffold backend projects with best practices

Readme

Backforge

Backforge is a CLI for scaffolding backend projects with an opinionated structure, practical defaults, and minimal setup.

Version 1.0.0 currently supports generating a TypeScript functional backend starter from interactive prompts.

Features

  • Interactive CLI prompt flow for project setup
  • Project name validation and normalization
  • Template-based project generation
  • TypeScript functional backend starter template
  • Optional dependency installation after generation
  • Ready-to-run Express starter with env config, health route, and sample module

Current Support

Backforge currently supports:

  • Language: TypeScript
  • Architecture: Functional
  • Package managers: pnpm, npm

Planned template structure:

  • ts/functional
  • ts/oop
  • js/functional
  • js/oop

Installation

Install dependencies for this project:

pnpm install

Run the CLI locally:

pnpm dev

Build the CLI:

pnpm build

Usage

Start the CLI:

pnpm dev

Or pass a default project name:

pnpm dev my-backend-app

The CLI will guide you through:

  • project name
  • language selection
  • architecture selection
  • package manager selection
  • dependency installation preference

After confirmation, Backforge will:

  1. Resolve the matching template.
  2. Create the target project directory.
  3. Copy template files into the new project.
  4. Replace placeholders like {{projectName}}.
  5. Optionally install dependencies.
  6. Print next-step commands for running the generated app.

Generated Project

The current starter template includes:

  • Express app bootstrap
  • environment config with dotenv
  • /api/health route
  • sample module with controller, service, and routes
  • TypeScript, ESLint, and Prettier setup
  • starter .env and .env.example

Example Flow

$ pnpm dev my-service
? Project name: my-service
? Select language: TypeScript
? Select architecture style: Functional
? Select package manager: pnpm
? Install dependencies? Yes

Output:

Project created successfully!
Location: /path/to/my-service

Next steps:
  cd my-service
  pnpm run dev

Project Structure

src/
  cli.ts
  constants/
  generator/
  prompts/
  types/
  utils/
template/
  ts/
    functional/

Development

Useful commands:

pnpm dev
pnpm build

Generated template docs live in:

  • template/README.md

Project reference docs:

  • CHANGELOG.md
  • CODEBASE_INDEX.md

Notes

  • The current release focuses on the TypeScript functional starter.
  • ts/oop, js/functional, and js/oop folders exist as placeholders for future templates.
  • If dependency installation fails, Backforge still finishes generation and prints manual install commands.

License

MIT