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

nd-express-plugin

v0.0.9

Published

node-dependency Plugin to enable annotation based Express configuration

Downloads

6

Readme

nd-express-plugin

This is the first plugin that adds ExpressJS bindings using the annotation support from node-dependency.

What this module does is to allow you to create web services without the boilerplate code from ExpressJS.

Install

npm install --save nd-express-plugin

You''ll need to have installed node-dependency.

Node-dependency will automatically find this module and call all needed function to configure it, therefore you do not need to require it.

Somewhere in your source folder you can add JS files with the following annotations, this plugin will use node-dependency's auto discovery to find them and wire all the handlers.

Supported annotations:

 - @Get, @Post, @Put, @Patch, @Head, @Options, @Delete
 - @RequestHandler
 - @Interceptor
 - @ExpressConfiguration

@RequestHandler Used to indicated that a Class is a Request Handler.

  • Targets: Class
  • Parameters: a String representing the base url of that Class

Usages:

		// Without defining a base url
		'@RequestHandler'
		function Handler(){
				...
		}
		module.exports = Handler;
		// Base URL set to '/handler'
		'@RequestHandler("/handler")'
		function Handler(){
				...
		}
		module.exports = Handler;

HTTP Annotations: @Get, @Post, @Put, @Patch, @Head, @Options, @Delete
These annotations are used to indicate that a method from a RequestHandler class should be called when a request with the defined HTTP Method is made to the desired url.
You can receive a lot of parameters in those methods, like the request or the response

  • Targets: Method
  • Parameters: a String representing the url to listen

Usages

		'@RequestHandler("/handler")'
		function Handler(Model){
				
				'@Get'
				this.fetch = function(){
					return [{}]; // The returned value will be sent the same as 'response.send([{}])'
				}
				
				'@Post'
				this.create = function(body){
					// The response will have its send method call with the value resolved from the promise
					return Model.save(body);
				}

				'@Get("/id/:id")'
				this.find = function($id, done, error){
					// You can also use the done method to send the data
					Model.find({
						_id : $id
					}, done);
				}
		}
		module.exports = Handler;

DOCs under construction, see the examples