callback-store

1.0.0 • Public • Published

callback-store

A store for callbacks waiting for delayed response.

Dependency Status Build Status npm version Coverage Status

Installation

npm install --save callback-store

Usage

const cbStore = require('callback-store')
 
let callbacks = cbStore()
let uid = Math.random()
callbacks.add(uid, function(err) {
  if (err) {
    /* An error will happen if the callback isn't executed during 5 seconds */
    return
  }
  console.log('Hello world!')
}, 5000)
 
/* ... */
 
let cb = callbacks.get(uid)
cb()

License

The MIT License (MIT)

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    2
    • latest

Version History

Package Sidebar

Install

npm i callback-store

Weekly Downloads

4

Version

1.0.0

License

MIT

Last publish

Collaborators

  • zkochan