
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.
@nothingness/level
Advanced tools
Minimal / simplistic / incomplete / bad adaptor to connect level to nothingness.
npm install --save nothingness @nothingness/level
var ThingerDAO = require('./thinger-dao.js');
var Adaptor = require('@nothingness/level');
var assert = require('assert');
var dao = new ThingerDAO(new Adaptor('./thinger-db'));
var thingy = { type: 'great band' };
// uses Bluebird's .nodeify(), so callback or promise chain are fine
dao.save(thingy, function (err) {
if (err) throw err;
dao.findAll(function (err, results) {
if (err) throw err;
assert.deepEqual(
results,
[{ type: 'great band' }],
'should only have one item, of type "great band"'
);
console.log('round trip succeeded!');
});
});
Connect the Adaptor to a LevelDB data directory; assumes that all values will be encoded as JSON.
Maps to the put function for levelup; assumes that key generation and object preparation is handled elsewhere.
Load all of the values in the collection. Override this unless you're only storing one type of value per LevelDB database.
Maps to the close function for levelup.
This is pre-1.0.0 software, and I'm going to keep iterating on this and nothingness until I have the basic CRUD logic and simple finders worked out for both sides in a way that doesn't make me want to barf. Getting this done in a way that keeps the coupling level right is tricky.
It may take a little while given my other commitments, so don't be surprised if this doesn't go anywhere interesting for a while.
FAQs
Water seeks its own level; without not-water we cannot be wet.
We found that @nothingness/level demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.