Socket
Book a DemoInstallSign in
Socket

co-next

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

co-next

Use generators for request handlers and middleware. Calls next only if there was an error. Useful for Express routes.

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
42
425%
Maintainers
1
Weekly downloads
 
Created
Source

CoNext.js

![NPM version][npm-badge] [npm-badge]: https://badge.fury.io/js/co-next.png

CoNext.js is a small function for JavaScript to wrap a generator function with Co for use as request handlers and middlewares. Calls the last argument (usually called next) if there was an error, but not if the generator finishes successfully. Useful with Express routes.

Installing

npm install co-next

CoNext.js follows semantic versioning, so feel free to depend on its major version with something like >= 1.0.0 < 2 (a.k.a ^1.0.0).

Using

var next = require("co-next")
var app = require("express")()

app.get("/", next(function*(req, res, next) {
  if (req.account == null) throw new Error("Unauthorized")
  res.send("Hello, world!")
}))

In the above example, the thrown error will be passed to next, which in Express's case calls the error handling middleware later on. If the generator succeeds, the next callback will not be called.

If you need to, like in middleware handlers, you can always call next yourself:

app.use(next(function*(req, res, next) {
  var account = yield accounts.read(req.session.accountId)
  if (account == null) return void next(new Error("Unauthorized"))
  req.account = account
  next()
}))

License

CoNext.js is released under a Lesser GNU Affero General Public License, which in summary means:

  • You can use this program for no cost.
  • You can use this program for both personal and commercial reasons.
  • You do not have to share your own program's code which uses this program.
  • You have to share modifications (e.g. bug-fixes) you've made to this program.

For more convoluted language, see the LICENSE file.

About

Andri Möll typed this and the code.
Monday Calendar supported the engineering work.

If you find CoNext.js needs improving, please don't hesitate to type to me now at andri@dot.ee or create an issue online.

Keywords

co

FAQs

Package last updated on 31 Jan 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.