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

nodly

v1.0.12

Published

Nodly is an interactive CLI for scaffolding modern Node.js/Express.js backend projects with instant setup for databases, mailers, queues, sockets, and more. Skip boilerplate and start building features fast.

Downloads

39

Readme

Nodly

Nodly is a powerful, interactive CLI tool for instantly scaffolding modern Node.js and Express.js backend projects.
With Nodly, you can generate a production-ready API server in seconds—complete with your choice of database, mailer, queue, and socket integrations.
Add controllers, routers, and middlewares with a single command.
Nodly is perfect for rapid prototyping, scalable API development, and teams who want to skip boilerplate and focus on building features.


No more manual setup!
Nodly solves the problem of adding and configuring every database, mailer, queue, and socket integration.
Just select your options in the CLI and Nodly sets up everything for you—databases, mailers, queues, and sockets are all ready to use out of the box!


✨ Why Use Nodly?

  • Rapid Prototyping: Instantly scaffold production-ready Express.js apps with best practices.
  • Customizable: Choose your stack—databases, queues, mailers, and more—during setup.
  • Productivity: Add controllers, routers, and middlewares with a single command.
  • Consistency: Enforces a modular, maintainable project structure.
  • Extensible: Easily integrate new features or swap technologies as your project grows.

✨ Features

  • Interactive CLI for project setup
  • Express.js app scaffolding
  • Database, mailer, and queue integrations (BullMQ, RabbitMQ, Kafka)
  • Easily add controllers, routers, and middlewares
  • Modular and extensible structure
  • TypeScript & JavaScript support
  • Built-in essential middlewares

🚀 Installation

Install Nodly globally via npm:

npm install -g nodly

Or use with npx (no global install needed):

npx nodly

🛠️ Usage

Create a New Project

nodly

Follow the interactive prompts to scaffold your project with your preferred options.

Add a Middleware

nodly add middleware <name>

Creates a new middleware file in the middlewares directory.

Add a Controller

nodly add controller <name>

Creates a new controller file in the controllers directory.

Add a Router

nodly add router <name>

Creates a new router file in the routes directory.


🏗️ Supported Databases & ORMs

During project setup, Nodly lets you choose from popular databases and ORMs:


🧩 Built-in Middlewares

Nodly includes essential Express middlewares out of the box:

  • Body Parser: Parses incoming request bodies (JSON, URL-encoded).
  • CORS: Enables Cross-Origin Resource Sharing.
  • Morgan: HTTP request logging.
  • Error Handler: Centralized error handling.
  • Custom Middlewares: Easily add your own with nodly add middleware <name>.

⚡ Integrations

  • Databases: MongoDB, PostgreSQL, MySQL, Redis (with Mongoose, Supabase, Drizzle, TypeORM or Prisma)
  • Mailers: Nodemailer integration (optional)
  • Queues: BullMQ, RabbitMQ, Kafka (producer/consumer structure)
  • Socket.IO: Optional real-time support

📦 Project Structure

my-nodly-app/
	|- Dockerfile
	|- server.js
	|- .env
	|- utils/
        |- apiresponses.js
        |- generaterandomid.js
	|- routes/
		|- app.route.js
	|- controllers/
		|- app.controller.js
	|- config/
		|- databases/
		    |- redis.js
		    |- mongoose.js
		    |- mysql2.js
		    |- postgresql.js
		    |- prisma.js
		    |- supabase.js
		    |- typeorm.js
            |- firebase.js
		    |- drizzle.js
		|- queues/
		    |- bullmq/
				|- bullmq.js
		    |- rabbitmq/
				|- rabbitmq.js
		    |- kafka/
				|- producer.js
				|- consumer.js
        |- mailers/
		    |- nodemailer.js
        |- sockets/
            |- socketIO.js
	|- middlewares/
		|- app.middleware.js

📖 Example Commands

nodly add controller user   # Add new Controller
nodly add middleware auth   # Add new Middleware
nodly add router product    # Add new Router

📝 Scripts

After scaffolding, use standard npm scripts:

npm install
npm start      # Starts the server
npm run dev    # Starts the server with hot-reloading (and initializes Nodemailer if enabled)

Note:
All required dependencies are installed automatically!
When you scaffold a new project with Nodly, it installs everything you need—including Express, CORS, Morgan, dotenv, nodemon, express-rate-limit, JWT, and all other core, queue, mailer, and database packages you select.
You do not need to manually install any of these dependencies again.
Just run npm install in your generated project and you’re ready to go!


🧑‍💻 Contributing

Contributions are welcome!
Fork the repo, create a branch, and submit a pull request.


💬 Support

For issues, open a ticket on GitHub Issues.


🔗 Links