
Research
Node.js Fixes AsyncLocalStorage Crash Bug That Could Take Down Production Servers
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.
npm install tasked
Or from source:
git clone git://github.com/mikeal/tasked.git cd tasked npm link
var tasked = require('tasked')
, request = require('request')
, t = tasked('http://me.iriscouch.com:5984/tasks')
;
t.on('mytype', function (task) {
task.info // Whole doc
request(task.info.url, task.promise('http-request', function (e, r) {
if (r.statusCode === 200) {
// do something
}
}))
})
To create a new task to be processed you must write a document in to this CouchDB with your own custom type and a state property that is set to "new".
request.post(http://me.iriscouch.com:5984/tasks, {json:
{ type: 'mytype',
, state: 'new'
, url: 'http://www.google.com'
}
})
tasked will set the document's state to "processing" and emit an event for that type. While task promises are open it remain in that state. When all the promises are resolved (succeeded or failed) the document's state will be set to "complete" and a results and errors property will be set with an object of all the success and failures from the promises.
This method creates a promise of the given name. When complete an event will be emitted on the task of the given name. An option callback will be added a handler for that event.
You cannot give two promises the same name on the same task object.
A promise that is returned is a single function that matches the standard node convention of function (error, success) {} so it should be usable in any function that follows standard node.js patterns.
FAQs
Background task state machines on top of CouchDB.
We found that tasked demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Research
Node.js patched a crash bug where AsyncLocalStorage could cause stack overflows to bypass error handlers and terminate production servers.

Research
/Security News
A malicious Chrome extension steals newly created MEXC API keys, exfiltrates them to Telegram, and enables full account takeover with trading and withdrawal rights.

Security News
CVE disclosures hit a record 48,185 in 2025, driven largely by vulnerabilities in third-party WordPress plugins.