
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.
@times/error-collection
Advanced tools
Allows collections of errors to be built and bubbled up through an application
Allows collections of errors to be bubbled up through an application
// Load the library
const { ErrorCollection } = require('@times/error-collection');
// Create an error with attached data
const error = new ErrorCollection('INVALID_ID', { id });
// You can append more errors to the chain
error.addError('ANOTHER_ERROR');
// And then get all the errors back
error.getErrors();
There is a Chai plugin that adds throwErrorCollection() and rejectedWithErrorCollection() methods which can be used for testing.
// Load the plugin
const { errorCollectionChaiPlugin } = require('@times/error-collection');
// Load chai and initialise the plugin
const chai = require('chai');
chai.use(errorCollectionChaiPlugin);
const expect = chai.expect;
// Write your tests
describe('myThing', () => {
describe('#myMethod()', () => {
it('should pass a valid check', () => {
expect(() => {}).to.throwErrorCollection([
{ code: 'SOME_ERROR', data: { name: 'test' } },
]);
});
it('should pass a valid promise check', () => {
return expect(
myFunction()
).to.be.rejectedWithErrorCollection([
{ code: 'SOME_ERROR', data: { name: 'test' } },
]);
});
});
});
Pull requests are very welcome. Please include a clear description of any changes, and full test coverage.
During development you can run tests with
npm test
FAQs
Allows collections of errors to be built and bubbled up through an application
We found that @times/error-collection demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers 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.