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

@nathius262/nexusjs

v0.0.22

Published

A lightweight Express.js framework with Sequelize, automatic module generation, authentication, and a CLI for easy development.

Readme

🚀 NexusJS

NexusJS Logo
Express.js

A lightweight Express.js framework with Sequelize, automatic module generation, authentication, and a CLI for easy development.


✨ Features

  • Express.js + Sequelize integration
  • ⚙️ Automatic module generation via CLI
  • 🔑 Built-in authentication (JWT)
  • 📦 Lightweight & modular structure

📥 Installation

Install using NPM:

npm i @nathius262/nexusjs

🚀 CLI Commands

🏗️ Project Scaffolding

| Command | Description | |---------------------------------------|-------------------------| | npx nexus create-project <name> | Creates new project | | npx nexus init <name> | Alias for create-project|

🧩 Module Generation

| Command | Description | |-----------------------------------------------------------|-----------------------------| | npx nexus make-module <name> [flags] | Generate complete module | | npx nexus make-controller <name> [--admin --api] | Generate controller | | npx nexus make-service <name> [--admin --api] | Generate service | | npx nexus make-router <name> [--admin --api] | Generate router | | npx nexus make-model <name> | Generate model + migration |

🛠️ Generation Flags

| Flag | Description | |------------|------------------------------------| | -m | Generate model and migration | | -c | Generate controller | | -r | Generate router | | -s | Generate service | | --admin | Generate admin version | | --api | Generate API version |


📌 Usage Examples

Create a new project

npx nexus create-project ecommerce-app

Generate a complete product module with all components (admin + API)

npx nexus make-module product -mcrs --api --admin

Generate only API components of user module

npx nexus make-module user -crs --api

Generate only an admin controller for payment

npx nexus make-controller payment --admin

🔧 Create a Full Module

nexus make-module <moduleName> -mcrs

🛠️ Options

| Flag | Description | |-----------|--------------------------------| | -m | Generate model and migration | | -c | Generate controller | | -r | Generate router | | -s | Generate service | | --admin | Generate admin version (CRS) | | --api | Generate api version (CR) |


📁 Output Structure

src/
├── config/
├── middlewares/
├── core/
├── controllers/
├── models/
├── views/
├── modules/
│   └── product/
│       ├── controllers/
│       │   ├── api/
│       │   │   └── product.controller.js
│       │   │   └── admin.product.controller.js
│       │   └── product.controller.js
│       │   └── admin.product.controller.js
│       ├── routes/
│       │   ├── api/
│       │   │   └── product.routes.js
│       │   └── admin.product.routes.js
│       │   └── product.routes.js
│       ├── services/
│       │   ├── product.service.js
│       │   └── admin.product.service.js
│       └── migrations/
│       │
│       └── models/
│           └── product.model.js
├── utils/
└── index.js

🛠️ Contributing

We welcome contributions! Follow these steps to get started:

1️⃣ Fork the repository

Click the "Fork" button at the top-right of this repo.

2️⃣ Clone your fork

git clone https://github.com/Nathius262/nexusjs.git
cd nexusjs

3️⃣ Create a new branch

git checkout -b feature/your-feature

4️⃣ Make changes & commit

git add .
git commit -m "Added feature XYZ"

5️⃣ Push changes & create a Pull Request

git push origin feature/your-feature

Then go to GitHub and submit a Pull Request (PR) 🚀


📝 License

This project is licensed under the MIT License.

MIT License

© 2025 Nathaniel

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction...

❤️ Support & Feedback

Star this project on GitHub if you find it useful!
For questions, open an Issue or create a Pull Request.


🚀 Let’s Build Together!

Happy coding! 💻✨