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-router-decorators

v1.0.0

Published

Write your Express (4+) routers declaratively with ES2015 classes and ES decorators. TypeScript and Babel supported.

Downloads

4

Readme

express-router-decorators

Write your Express (4+) routers declaratively with ES2015 classes and ES decorators. TypeScript and Babel supported.

Example

Using express-router-decorators, you can define your Router controller as ES2015 class, which lets you keep cleaner and well-readable code. Remember to add @Root decorator to the class - this is a 'mounting point' of your router. Particular paths in your router are defined using @Path decorator, which takes the path param (either string or regexp, as supported by Express) as its first argument. Second argument expects an http method name (string), but it is optional and defaults to 'get' (see the list of all http methods supported by express).

import * as express from 'express';
import { bindControllers, Root, Path } from 'express-router-decorators';

const app = express();

@Root('/greet')
class Greeter {

  @Path('/hello')
  hello (req, res) {
    res.json({greeting: 'hello!'});
  }
}

bindControllers(app, Greeter);

app.listen(1221, () => console.log('server ready at localhost:1221'));

Inheritance is also supported. You can extend your router classes with other classes! The router created with Greeter class below will also have /hola route (inherited from SpanishGreeter class).

class SpanishGreeter {
  @Path('/hola')
  hola (req, res) {
    res.json({greeting: 'hola!'});
  }
}

@Root('/greet')
class Greeter extends SpanishGreeter {

  @Path('/hello')
  hello (req, res) {
    res.json({greeting: 'hello!'});
  }
}

Installation

npm install express-router-decorators --save

Configuration

TypeScript:

Make sure to add following two lines in the "compilerOptions" of your tsconfig.json file:

"experimentalDecorators": true,
"emitDecoratorMetadata": true

Babel:

You will need "transform-decorators-legacy" plugin (npm install babel-plugin-transform-decorators-legacy --save-dev) in your .babelrc file, eg:

{
  "presets": ["es2015", "stage-2"],
  "plugins": ["transform-decorators-legacy"]
}

API

@Root(rootRoute: string) - class decorator used to define the router's mounting point.

  • rootRoute: string - router's mounting point (as known from Express: app.use('/mountingpoint', router)).

@Path(pathRoute: string | RegExp, httpMethod?: string) - methods decorator that defines the routes within router's instance.

@Use - methods decorator that defines the router's specific middleware. Takes no arguments.

bindControllers(app: Express, ...clazz: Function[]) - the 'main' function that 'connects' the router(s) class(es) to the Express application's instance.

  • app: Express - Express application's instance (eg. const app = express()).
  • ...clazz: Function[] - (rest-parameters style) router class(es) decorated with @Root and @Path/@Use (see example).

License

MIT