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 🙏

© 2024 – Pkg Stats / Ryan Hefner

express-mod-cli

v1.0.12

Published

Express application generator with modular architecture. Install globally using 'npm install -g express-mod-cli'

Downloads

493

Readme

Express Modular Generator

A command-line tool to generate Express.js applications with a modular architecture pattern.

Installation

npm install -g express-mod-cli

Usage

Create a new project

express-mod-cli create my-project

Go to Project Directory

cd projectName

Adding New Modules 📦

express-mod-cli add users

Example:

npx express-mod-cli add users

Run the Projects

npm run dev

Database Configuration 🔧

Local MongoDB Setup

  1. Update MongoDB URI env
  • Open the .env file located in the root of the project directory.
  • Replace the placeholder MongoDB URI with your actual MongoDB URI.
  • Example: MONGODB_URI=mongodb://localhost:27017/yourDB_name

MongoDB Atlas Setup ☁️

If you prefer using MongoDB Atlas (cloud database):

  1. Get Your Connection String

    • Log in to MongoDB Atlas
    • Navigate to your cluster
    • Click "Connect"
    • Choose "Connect your application"
    • Copy the connection string
  2. Configure Atlas URI

    env For MongoDB Atlas MONGODB_URI=mongodb+srv://<username>:<password>@cluster0.xxxxx.mongodb.net/yourDB_name DB_NAME=yourDB_name PORT=5000

    Remember to replace <username>, <password>, and the rest of the URI with your actual MongoDB Atlas credentials

Environment Variables Explained 📝

| Variable | Description | Example | | ------------- | ------------------------------ | --------------------------------------- | | MONGODB_URI | Your MongoDB connection string | mongodb://localhost:27017/yourDB_name | | DB_NAME | Name of your database | yourDB_name | | PORTI | Port number for the server | 5000 |

Modules

Each module follows the Model-Controller-Route pattern and includes:

  • Model: Defines the database operations.
  • Controller: Manages the business logic for each route.
  • Routes: Maps HTTP methods to controller functions.

Default Endpoints (CRUD)

For each module, the following CRUD endpoints are available:

  • GET /module: Retrieve all items.
  • GET /module/:id: Retrieve a single item by ID.
  • POST /module: Create a new item.
  • PATCH /module/:id: Update an existing item by ID.
  • DELETE /module/:id: Delete an item by ID

Features

  • Modular architecture with Model-Route-Controller pattern
  • MongoDB integration
  • Error handling middleware
  • CORS and security headers
  • Environment configuration
  • Ready-to-use CRUD operations

Upcoming Features

  • Authentication: Adding user authentication with JWT for securing endpoints.
  • Route Authentication: Implementing route-level authentication middleware to restrict access to specific routes.

Project Structure

project/
├── src/
│   ├── config/
│   │   └── db.js
│   ├── middleware/
│   │   └── errorHandler.js
│   ├── modules/
│   │   └── [module-name]/
│   │       ├── module.model.js
│   │       ├── module.controller.js
│   │       └── module.routes.js
│   ├── utils/
│   └── index.js
├── .env
├── .gitignore
└── package.json

License

MIT