GithubHelp home page GithubHelp logo

minkainc / express-promise-router Goto Github PK

View Code? Open in Web Editor NEW

This project forked from express-promise-router/express-promise-router

0.0 1.0 0.0 179 KB

A lightweight wrapper for Express 4's Router that allows middleware to return promises

License: MIT License

JavaScript 98.92% Shell 0.07% TypeScript 1.01%

express-promise-router's Introduction

express-promise-router

npm version Build Status

A simple wrapper for Express 4's Router that allows middleware to return promises. This package makes it simpler to write route handlers for Express when dealing with promises by reducing duplicate code.

Getting Started

Install the module with: npm install express-promise-router --save.

express-promise-router is a drop-in replacement for Express 4's Router.

Documentation

Middleware and route handlers can simply return a promise. If the promise is rejected, express-promise-router will call next with the reason. This functionality removes the need to explicitly define a rejection handler.

// With Express 4's router
var router = require('express').Router();

router.use('/url', function (req, res, next) {
    Promise.reject().catch(next);
})

// With express-promise-router
var router = require('express-promise-router')();

router.use('/url', function (req, res) {
    return Promise.reject();
})

Calling next() and next('route') is supported by resolving a promise with either 'next' or 'route'. No action is taken if the promise is resolved with any other value.

router.use('/url', function (req, res) {
    // equivalent to calling next()
    return Promise.resolve('next');
});

router.use('/url', function (req, res) {
    // equivalent to calling next('route')
    return Promise.resolve('route');
});

This package still allows calling next directly.

router = require('express-promise-router')();

// still works as expected
router.use('/url', function (req, res, next) {
    next();
});

Contributing

Add unit tests for any new or changed functionality. Lint and test your code using npm test.

Unit tests use mocha and chai.

We use eslint, but styling is controlled mostly by prettier which reformats your code before you commit. You can manually trigger a reformat using npm run-script format.

Release History

v3.0.3

  • Improve package dependencies #57

v3.0.2

  • Add default property to simulate es6 style default export #50 #51

v3.0.1

  • Remove @types/express peerDependency #47 #48

v3.0.0

  • Update to chai 4
  • Update to mocha 4
  • Update to eslint 4
  • Update to sinon 4
  • Reduced lodash usage and footprint #41
  • Added TypeScript definitions #47

v2.0.0

  • Dropped support for old Node versions (<4).
    • Supported: Node 4 LTS, Node 6 LTS, Node current.
  • Use native promises instead of bluebird. (One less dependency!)
  • Use is-promise module instead of our own function.

v1.1.1

v1.1.0

  • Improvements to error reporting
  • Support for route array
  • Bug fixes

License

Copyright (c) 2014 Alex Whitney. Licensed under the MIT license.

express-promise-router's People

Contributors

mormahr avatar alex-whitney avatar thething avatar bangbang93 avatar tikotzky avatar cypherix93 avatar davidedaniel avatar whittle avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.