
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.
define-accessor-property
Advanced tools
Define an accessor property on an object. Will either throw, or fall back to assignment in loose mode, in an engine without descriptors.
Define an accessor property on an object. In an engine without descriptors, in loose mode, when only a getter is provided, nonEnumerable is false, and nonConfigurable is false, wil fall back to assignment - otherwise, it will throw.
The two non* options can also be passed null, which will use the existing state if available.
The loose option will mean that if you attempt to set a nonconfigurable/nonwritable accessor property with set, in an environment without descriptor support, it will fall back to normal assignment (and eagerly evaluate the getter).
var defineAccessorProperty = require('define-accessor-property');
var assert = require('assert');
var str = 'value';
var strThunk = function () { return str; };
var strSetter = function (v) { str = v; };
var random = function () { return Math.random(); };
var obj = {};
defineAccessorProperty(
obj,
'key',
{
get: strThunk,
set: strSetter,
}
);
defineAccessorProperty(
obj,
'key2',
{
get: random, // at least one of "get" or "set" must be provided
nonConfigurable: true, // optional
nonEnumerable: true, // optional
loose: false, // optional
}
);
assert.deepEqual(
Object.getOwnPropertyDescriptors(obj),
{
key: {
configurable: true,
enumerable: true,
get: strThunk,
set: strSetter,
},
key2: {
configurable: false,
enumerable: false,
get: random,
set: undefined,
},
}
);
FAQs
Define an accessor property on an object. Will either throw, or fall back to assignment in loose mode, in an engine without descriptors.
We found that define-accessor-property 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.