
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.
It makes sure that your processes are dead.
The following example uses killer to kill a child process after an hour.
var spawn = require('child_process').spawn,
killer = require('killer');
var child = spawn('node', ['server.js']);
setTimeout(function () {
// Ensure that the server is dead.
killer(child.pid, function () {
console.log('Child process killed');
});
}, 60 * 60 * 1000);
killer(options, callback)optionsIf options is a string or a number, it's assumed to be the PID. Defaults are
used for all other options.
pid - PID of the process to killinterval - How often to check if process is still alive (default: 1000). Setting to false disables polling.killSignal - which signal to use to kill the process (default: SIGKILL)termSignal - which signal to use to terminate the process after timeout (default: SIGTERM)timeout - when to send termSignal to the process (default: 10000).callbackCalled when process is dead.
FAQs
It makes sure that your processes are dead.
The npm package killer receives a total of 89 weekly downloads. As such, killer popularity was classified as not popular.
We found that killer 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.