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

nexdock

v2.1.33

Published

A simple and interactive CLI tool to quickly set up an Express.js project with best practices

Downloads

53

Readme

NexDock

NexDock is a developer-first CLI to scaffold a production-grade Express backend with explicit architecture choices.

Instead of hiding setup behind opaque generators, NexDock asks the right infra questions up front and generates a clean, readable codebase you can own from day one.

Highlights

  • Interactive setup with guided prompts
  • Preset-driven setup for repeatable projects
  • Runtime support: Node, Bun, Deno
  • Database support: PostgreSQL, MongoDB, MySQL
  • ORM support: Drizzle, Prisma, Sequelize, Mongoose
  • Optional modules: Auth, Cache, SMTP, Socket
  • Clean TypeScript-first structure

Philosophy

NexDock is built on three principles:

  1. Explicit over magic
  2. Reusable over repetitive
  3. Scalable by default

Requirements

  • Node.js installed
  • At least one supported runtime: Node, Bun, or Deno
  • At least one package manager: npm, pnpm, yarn, bun, or deno

Installation

Install globally:

npm install -g nexdock

Or run directly:

npx nexdock

Quick Start

Interactive mode:

nexdock my-app

Preset mode:

nexdock --preset ./nexdock.preset.json

If no options are provided, NexDock starts in interactive mode.

CLI Usage

nexdock [project-name] [options]

Flags

| Flag | Alias | Description | | --- | --- | --- | | --mode | -m | Execution mode: start, test, test:bin | | --name | -n | Project name | | --preset | -p | Load preset file | | --generatePreset | -g | Generate preset file | | --debug | -d | Print resolved CLI config |

Preset Workflow

Generate preset after interactive flow:

nexdock --generatePreset

Default output path:

./<project-name>/.nexdock

Custom output path:

nexdock --generatePreset ./nexdock.preset.json

Example preset:

{
  "name": "myawesomeapp",
  "runtime": "bun",
  "packageManager": "bun",
  "db": {
    "enable": true,
    "provider": "postgresql",
    "connectionString": "postgres://postgres:password@localhost:5432/myawesomeapp",
    "orm": "drizzle",
    "name": "myawesomeapp"
  },
  "cache": {
    "enable": true,
    "service": "multi"
  },
  "auth": {
    "enable": true
  },
  "smtp": {
    "enable": true,
    "service": "gmail"
  },
  "git": true,
  "socket": true
}

Full schema reference:

Generated Output

FAQ

Q: Can I reuse presets across multiple projects?

A: Yes. Presets are designed for repeatable backend setup.

Q: If runtime is bun, do I need Bun installed locally?

A: Yes. The selected runtime must be installed.

Contributing

  1. Fork this repository
  2. Create a feature branch
  3. Make focused changes with clear commits
  4. Add or update tests where needed
  5. Open a pull request

Author

  • GitHub: https://github.com/codewithevilxd
  • Email: [email protected]
  • Portfolio: https://nishantdev.space

License

MIT. See LICENSE.