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-server-startup

v2.0.0

Published

A powerful CLI tool by **TechAmigo** to **scaffold production‑ready Node.js backend projects** in seconds — with support for JavaScript or TypeScript, popular databases, and JWT‑based security options.

Readme

create-server-startup

A powerful CLI tool by TechAmigo to scaffold production‑ready Node.js backend projects in seconds — with support for JavaScript or TypeScript, popular databases, and JWT‑based security options.


🌟 Features

  • Choose between JavaScript or TypeScript
  • Select popular databases (MongoDB, PostgreSQL, MySQL, SQLite)
  • Optionally enable security (Helmet, CORS, Rate Limiting, JWT Auth)
  • Auto‑generates:
    • Project folder structure
    • .env.example file
    • README.md, .gitignore, package.json
    • Health‑check endpoint
    • Logger & error middleware
  • Pre‑configured with nodemon, winston, dotenv, and more

📦 Installation

▶️ From NPM (Global)

npm install -g create-server-startup

Then simply run:

create-server-startup

and follow the interactive prompts!


🛠️ Setup Locally (Development/Contributing)

  1. Fork the repo on GitHub: https://github.com/TechAmigo2k25/create-server-startup

  2. Clone your fork:

    git clone https://github.com/<your‑username>/create-server-startup.git
    cd create-server-startup
  3. Install dependencies:

    npm install
  4. Link it locally to test as a CLI:

    npm link

Now you can run the CLI:

create-server-startup

💡 Why use create-server-startup?

Setting up a new backend often means repeating boilerplate:

  • Folder structure
  • Health checks, loggers, error handlers
  • Env & Git configuration
  • Security middleware & DB connections

create-server-startup automates all of that, so you can dive straight into building features.


🧪 Example Usage

? ➤ Project name: my-server
? ➤ JavaScript or TypeScript? TypeScript
? ➤ Database: PostgreSQL
? ➤ Security level: JWT Authentication

Generated Structure

my-server/
├── src/
│   ├── config/
│   ├── controllers/
│   ├── db/
│   ├── middlewares/
│   ├── routes/v1/
│   ├── services/
│   ├── utils/
│   └── app.ts
├── .env.example
├── .gitignore
├── package.json
├── tsconfig.json
└── server.ts

🚀 Running the Generated Project

  1. Install dependencies

    cd my-server
    npm install
  2. Configure environment

    cp .env.example .env
    # then update .env with your DATABASE_URL, JWT_SECRET, etc.
  3. Start the server

    • TypeScript:

      npm run dev
    • JavaScript:

      npm start
  4. Verify health endpoint

    curl http://localhost:3000/api/v1/health

🐛 Issues & 💡 Features

Got a bug or idea? Please open an issue.


🤝 Contributing

We love contributions! To get started:

  1. Fork the repo

  2. Create a feature branch:

    git checkout -b feature/awesome-feature
  3. Commit your changes:

    git commit -m "Add awesome feature"
  4. Push and open a PR


📄 License

MIT © [TechAmigo]