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

edec

v1.1.3

Published

A simple express decorator for building restful APIs

Readme

edec

edec is an Express-based TypeScript library that helps to organize and manage Express applications by providing decorators for controllers, routes, error handling, and logging. This library simplifies the process of setting up an Express server and managing its routes and responses.

Features

  • Application Management: Easily create and configure an Express application.

  • Decorator-based Controllers and Routes: Use decorators to define controllers and routes, reducing boilerplate code.

  • Centralized Error Handling: Custom error classes for handling and logging errors.

  • Response Utilities: Utility methods for sending success and error responses.

  • Built-in Logging: Built-in morgan logger for HTTP requests.

Installation

Install the package via npm or yarn:

npm install edec

or

yarn add edec

Basic Usage

Here’s a quick example of how to use the library to create an Express application, define routes using decorators, and handle HTTP requests.

  1. Create an Express Application
import { Application } from "edec";

const app = new Application();
app.start(3000, () => {
  console.log("Server is running on port 3000");
});
  1. Define Controllers and Routes
import { Controller, ApiRouter, HttpResponse } from "edec";

/**
 * Example controller for handling API requests
 */
const router = new ApiRouter();

@Controller("/users")
class UserController {
  @router.get("/")
  getUsers() {
    HttpResponse.ok({
      data: [{ id: 1, name: "John Doe" }],
    });
  }

  @router.post("/")
  createUser() {
    HttpResponse.created({
      data: { id: 1, name: "John Doe" },
    });
  }
}

// Initialize the controller in the app
const app = new Application();
app.defineRoutes([UserController]);
app.start(3000);
  1. Error Handling The library provides custom error classes for better error handling and logging.
import { ApiError } from "edec";

try {
  // Simulating an error
  throw new ApiError("Something went wrong!");
} catch (error) {
  error.log(); // Log the error
}

API Documentation

Application

The Application class is used to create and configure the Express app.

Methods

  • getApp(): Returns the Express application.

  • defineRoutes(controllers: any[]): Registers the routes for the given controllers.

  • start(port: number, callback?: () => void): Starts the server on the specified port.

Controller Decorator

The Controller(baseRoute?: string) decorator is used to define a controller.

ApiRouter

The ApiRouter class contains methods to define routes with different HTTP methods.

- Methods

  • get(path?: string, ...middlewares: Function[]): MethodDecorator

  • post(path?: string, ...middlewares: Function[]): MethodDecorator

  • put(path?: string, ...middlewares: Function[]): MethodDecorator

  • patch(path?: string, ...middlewares: Function[]): MethodDecorator

  • delete(path?: string, ...middlewares: Function[]): MethodDecorator

  • options(path?: string, ...middlewares: Function[]): MethodDecorator

  • head(path?: string, ...middlewares: Function[]): MethodDecorator

HttpResponse

The HttpResponse class contains static methods to send success or error responses.

- Methods

  • create(statusCode: number, data: any): void

  • ok(data: any): void

  • created(data: any): void

  • badRequest(message: string): void

  • unauthorized(message: string): void

  • forbidden(message: string): void

  • notFound(message: string): void

  • internalServerError(message: string): void