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

create-bkitdev

v1.0.11

Published

Scaffold a production-ready backend in seconds — pick your stack and go

Downloads

819

Readme

create-bkitdev

Scaffold a production-ready backend API in under 2 minutes.

create-bkitdev is the interactive scaffolder for BackendKit. Pick your runtime, framework, database, and ORM BackendKit wires everything together and hands you a clean, runnable project in seconds.


Usage

npm create bkitdev@latest
pnpm create bkitdev@latest
yarn create bkitdev

Interactive Prompts

◆  BackendKit — Backend scaffolding that just works
│
◇  Project name
│  my-api
│
◇  Runtime
│  Node.js
│
◇  Framework
│  Express
│
◇  Language
│  TypeScript
│
◇  Database
│  PostgreSQL
│
◇  ORM / Driver
│  Prisma
│
◇  Generate Docker Compose?
│  Yes
│
◇  Package manager
│  pnpm
│
◇  Project scaffolded successfully!
│
◆  Next steps
│  cd my-api
│  pnpm install
│  pnpm run dev

Supported Stacks

Node.js

| Framework | Language | Database | ORM / Driver | |---|---|---|---| | NestJS | TypeScript | PostgreSQL, MySQL, MongoDB | Prisma, TypeORM, Native | | Express | TypeScript | PostgreSQL, MySQL, MongoDB | Prisma, TypeORM, Native | | Express | JavaScript | PostgreSQL, MySQL, MongoDB | Prisma, Native |

TypeORM requires TypeScript decorators and is not available for JavaScript projects. NestJS is TypeScript-only.

Python

| Framework | Database | ORM / Driver | |---|---|---| | FastAPI | PostgreSQL | SQLAlchemy (async) | | FastAPI | PostgreSQL | asyncpg (native) | | FastAPI | MySQL | SQLAlchemy (async) | | FastAPI | MySQL | aiomysql (native) | | FastAPI | MongoDB | Motor (auto-selected) | | Flask | PostgreSQL | Flask-SQLAlchemy | | Flask | PostgreSQL | psycopg2 (native) | | Flask | MySQL | Flask-SQLAlchemy | | Flask | MySQL | PyMySQL (native) | | Flask | MongoDB | PyMongo (auto-selected) | | Django | PostgreSQL | Django ORM (auto-selected) | | Django | MySQL | Django ORM (auto-selected) | | Django | MongoDB | PyMongo (auto-selected) |


What Gets Generated

Node.js — Express + Prisma (TypeScript)

my-api/
├── src/
│   ├── index.ts          ← Express app, port 5087
│   └── lib/
│       └── prisma.ts     ← PrismaClient singleton
├── prisma/
│   └── schema.prisma     ← datasource + User model
├── .env                  ← seeded from .env.example
├── .env.example
├── .gitignore
├── docker-compose.yml
├── package.json
└── tsconfig.json

Node.js — Express + Native pg (JavaScript)

my-api/
├── src/
│   ├── index.js          ← Express app, port 5087
│   └── lib/
│       └── db.js         ← pg Pool with lazy init
├── .env
├── .env.example
├── .gitignore
├── docker-compose.yml
└── package.json

Python — FastAPI + SQLAlchemy

my-api/
├── app/
│   ├── main.py           ← FastAPI app with lifespan, port 5087
│   ├── database.py       ← async SQLAlchemy engine + session
│   ├── models.py         ← SQLAlchemy User model
│   └── api/routes/
│       └── health.py     ← GET /health
├── .env
├── .env.example
├── .gitignore
├── docker-compose.yml
└── requirements.txt

All Templates

Node.js (TypeScript)              Node.js (JavaScript)
──────────────────────────────    ──────────────────────────────
nestjs-prisma-postgresql          express-prisma-postgresql-js
nestjs-prisma-mysql               express-prisma-mysql-js
nestjs-prisma-mongodb             express-prisma-mongodb-js
nestjs-typeorm-postgresql         express-native-postgresql-js
nestjs-typeorm-mysql              express-native-mysql-js
nestjs-typeorm-mongodb            express-native-mongodb-js
nestjs-native-postgresql
nestjs-native-mysql
nestjs-native-mongodb
express-prisma-postgresql
express-prisma-mysql
express-prisma-mongodb
express-typeorm-postgresql
express-typeorm-mysql
express-typeorm-mongodb
express-native-postgresql
express-native-mysql
express-native-mongodb

Python
──────────────────────────────
fastapi-sqlalchemy-postgresql
fastapi-native-postgresql
fastapi-sqlalchemy-mysql
fastapi-native-mysql
fastapi-motor-mongodb
flask-sqlalchemy-postgresql
flask-native-postgresql
flask-sqlalchemy-mysql
flask-native-mysql
flask-pymongo-mongodb
django-django_orm-postgresql
django-django_orm-mysql
django-pymongo-mongodb

Requirements

  • Node.js >= 18
  • npm, pnpm, or yarn

License

MIT