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

create-servest

v2.1.0-beta.1

Published

The fastest way to generate backend projects for multiple frameworks, with flexible architectures and modern tooling

Readme

create-servest

create-servest is a scaffolding tool for quickly setting up modern backend projects. Inspired by create-vite, it allows you to bootstrap projects with or without addons in a streamlined way.

Features

  • Quickly scaffold a backend project
  • Optional addons for extended functionality
  • Works seamlessly with the servest package to integrate additional features

Installation

Using NPM:

npm create servest@latest

Using Yarn:

yarn create servest

Using PNPM:

pnpm create servest

Using Bun:

bun create servest

Then follow the prompts!


Non-interactive scaffolding

You can directly specify the project name and template via CLI options:

# Scaffold an Express MVC TypeScript project non-interactively
npm create servest@latest servest-project -- --template express-mvc-ts

# With addons
npm create servest@latest servest-project -- --template express-mvc-ts -a f-auth f-articles mongoose eslint-prettier

Tip: Use . as the project name to scaffold in the current directory:

npm create servest@latest . -- --template express-basic-ts

Currently Supported Frameworks & Variants

Express

  • basic-js — Basic JavaScript
  • basic-ts — Basic TypeScript
  • mvc-cjs — MVC CommonJS
  • mvc-esm — MVC ESM
  • mvc-ts — MVC TypeScript
  • modular-cjs — Modular CommonJS
  • modular-esm — Modular ESM
  • modular-ts — Modular TypeScript

Fastify

  • basic-js — Basic JavaScript
  • basic-ts — Basic TypeScript
  • mvc-cjs — MVC CommonJS
  • mvc-esm — MVC ESM
  • mvc-ts — MVC TypeScript
  • plugin-cjs — Plugin CommonJS
  • plugin-esm — Plugin ESM
  • plugin-ts — Plugin TypeScript

Django

  • django-basic — Django Basic

Addons

You can automatically include additional utilities during scaffolding using the -a or --addons flag:

npm create servest@latest -- --template express-mvc-ts -a f-auth mongoose eslint-prettier lint-staged

This will scaffold the express-mvc-ts project and install the required npm packages to enhance your development workflow.

Note: If any addon fails, the remaining ones will still be applied. You can re-run the failed addons manually later.

To learn more about servest addons, visit the npm package or check the GitHub repository


Options

  • -t, --template – Select a template (e.g., express-basic-js, express-mvc-ts)
  • -a, --addons – Space-separated list of addons (optional)
  • -h, --help – Show help message

Community Templates

Servest lets you quickly start a backend project using ready-made templates. You’re not limited to the official templates—other community templates can also be used.

To use a community template from GitHub:

# Copy the template files to a new folder
npx degit user/project my-project
cd my-project

# Install the project dependencies
npm install

# Start the development server
npm run dev

Tip: Some repositories use main instead of master as their default branch. In that case, add #main to the repo name:

npx degit user/project#main my-project

Contributing

Contributions are welcome! Please open an issue or submit a pull request if you find bugs or want to add features.


Inspiration

This project was heavily inspired by create-vite for project scaffolding and shadcn for addons, for addons, adopting a similar philosophy for backend scaffolding and utility generation..

License

MIT License