async-cls

1.0.1 • Public • Published

async-cls

dead simple "continuation-local storage" with Node async_hooks

npm travis standard

Install

npm install async-cls

Usage

continuation local storage allows you to implicitly make values available to an asynchronous chain of code. Multiple asynchronous chains of the same code can be running simultaneously, and each will only get access to its own value.

var cls = require('async-cls')
var express = require('express')
 
var userContext = cls()
 
var app = express()
app.get('/', function (req, res) {
  userContext.current = req.user
  // you can do any async operation, like filesystem access or waiting for Promises
  // to resolve
  setTimeout(function () {
    respond(res)
  })
})
 
function respond (res) {
  // `userContext.current` will return the `req.user` value that was set in this async call stack
  res.json({ userId: userContext.current.id })
}

API

context = cls()

Create a new context. A context can hold a single JavaScript value per async context.

context.current = value

Set the value for this async context (call stack).

context.current

Get the value for this async context.

context.destroy()

Destroy the context, removing its async_hook and cleaning up any context values. Accessing context.current after the context has been destroyed will return undefined.

License

Apache-2.0

Readme

Keywords

none

Package Sidebar

Install

npm i async-cls

Weekly Downloads

3

Version

1.0.1

License

Apache-2.0

Unpacked Size

5.99 kB

Total Files

7

Last publish

Collaborators

  • goto-bus-stop