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

dex.js

v1.0.0

Published

![Alternative to NestJS](https://img.shields.io/badge/alternative%20to-NestJS-red?style=for-the-badge&logo=nestjs) ![Express-based](https://img.shields.io/badge/based%20on-Express.js-blue?style=for-the-badge&logo=express) ![TypeScript](https://img.shields

Readme

Dex.js

Alternative to NestJS Express-based TypeScript Modular Architecture

Dex.js — A lightweight, modular framework built on top of Express.js, designed to make your backend development faster, cleaner, and way more scalable.

🚀 Features

  • ✅ Fully modular architecture
  • 🚀 Zero boilerplate setup
  • 🧠 Decorator-based routing
  • 🔥 CLI generator for rapid scaffolding
  • 🌐 CORS support out of the box
  • 💙 Built with TypeScript

📦 Quick Start

1. Install the CLI tool

npm install -g mvc-dex-cli

2. Initialize a new project

npx mvc-dex-cli init --dex-js my-dex-app

3. Add a new controller module

npx mvc-dex-cli add users

4. Setup your application in index.ts

import { createDexApp } from 'dex.js';
import usersController from './app/users/users.controller';
import usersService from './app/users/users.service';
import usersModel from './app/users/users.model';

createDexApp({
  port: 5006,
  controllers: [
    {
      Controller: usersController,
      Service: usersService,
      Model: usersModel
    }
  ]
});

📚 Learn the Dex.js Decorators

@ControleRoute(path: string)

Defines the base route path for a controller.

@ControleRoute('/users')
class UsersController { ... }

@RoutePath(method: 'get' | 'post' | 'put' | 'delete', path: string, middlewares?: Function[])

Defines a method as a route handler.

@RoutePath('get', '/')
public async getAll(req: Request, res: Response) {
  res.send('Hello from users!');
}

With middleware:

@RoutePath('get', '/', [myMiddleware])

⚙️ CORS Configuration

You can pass custom CORS options directly to the createDexApp function:

createDexApp({
  port: 5000,
  controllers: [...],
  corsOpt: {
    origin: 'http://localhost:3000',
    credentials: true
  }
});

🧪 Work In Progress

  • [ ] Built-in validation decorators
  • [ ] Global exception handling
  • [ ] Built-in logger
  • [ ] CLI plugin system
  • [ ] File-based routing (optional mode)

📖 License

MIT © 2025 — made with ❤️ by DequElite

Wanna contribute or ask something? Open an issue or ping me on GitHub 💬