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

servest

v0.1.1

Published

Add optional backend files and features to any project — ESLint, Prettier, Mongoose, and more.

Readme

Servest

Servest is a collection of utilities and integrations designed to enhance your Node.js backend and full-stack projects. It aims to simplify and accelerate the development workflow by providing pre-configured tools, folder structures, and scripts.

This project draws inspiration from shadcn, adapting the concept for backend development.


Why Servest?

Backend development often involves repetitive setup tasks like adding custom files (e.g: auth.route, products.controller, ratings.model etc), configuring ESLint, Prettier, Prisma, Drizzle, or MongoDB. Servest removes this overhead by providing a single command to add these utilities to your project, saving time and ensuring consistency.

Whether you're starting a new project or working on an existing one, Servest makes it easy to standardize your setup.


How It Works

1. Scaffold a New Project

Use the create-servest package to quickly scaffold a new backend project:

npx create-servest@latest my-backend-app  -- --template templateName
cd my-backend-app

For available templates visit create-servest#readme

2. Initiate Servest to Your Project

npx servest@latest init

3. Add Utilities to Your Project

Once your project is ready (or even if you already have an existing project), you can add utilities using servest:

npx servest@latest add <f-fileName>
npx servest@latest add <feature>
// for example
npx servest@latest add f-auth
// it will create all necessary files according to your template structure (mvc or modular), if the necessary folder does not exist, it will create them as well

npx servest@latest add mongoose

Available features:

| Feature | Description | | ----------------- | ---------------------------------------------------------------------------- | | f-fileName | Create related files and folder for your project structure (mvc or modular). | | mongoose | Adds pre-configured Mongoose setup for MongoDB. | | eslint | Sets up ESLint with recommended rules. | | prettier | Sets up Prettier formatting. | | eslint-prettier | Integrates ESLint + Prettier for a complete linting & formatting workflow. | | prisma | Adds Prisma ORM with a starter schema and migration commands. | | drizzle | Adds Drizzle ORM with SQLite support. | | lint-staged | Adds lint-staged + simple-git-hooks for pre-commit checks. |

You can run multiple features in one go:

npx servest@latest add eslint prettier prisma

Utilities and Developer Experience

Servest comes with:

  • Pre-configured MVC and modular architecture folder structures.
  • Automatic installation of dependencies for ESLint, Prettier, Prisma, Drizzle, and Mongoose.
  • Scripts added to package.json for easy linting, formatting, and database operations.
  • Inspired by shadcn to make backend and full-stack development smoother.

Getting Started

Install servest globally (optional) or use npx:

npm install -g servest
# or
npx servest@latest add <feature>

Contributing

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


License

MIT License