
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.
This is the util module from Keith Peters' wonderful book "Playing with Chaos" adapted to a node-style module.
var keycode = require('keycode')
, chaosjs = require('../../chaosjs')
;
window.onload = init
function init() {
var chaos = chaosjs()
document.body.addEventListener("keyup", function(event) {
var key = keycode(event.keyCode)
if (key === 'space') draw()
else if (key === 'p') chaos.popImage()
})
function draw() {
var x = Math.random() * (chaos.width - 100)
, y = Math.random() * (chaos.height - 100)
, w = 20 + Math.random() * 100
, h = 20 + Math.random() * 100
, r = Math.floor(Math.random() * 256)
, g = Math.floor(Math.random() * 256)
, b = Math.floor(Math.random() * 256)
;
chaos.context.fillStyle = "rgb(" + r + "," + g + "," + b + ")"
chaos.context.fillRect(x, y, w, h)
}
}
The biggest difference is that the "init" method is gone and the module itself intializes an object it returns. This is so that you can use this against multiple canvas elements on a single page.
Intializes and returns the util API for element which can be a canvas element or an element id to lookup. If no element is passed one with an id canvas is used. By default the element is resized to the full height and width of the window, you can disable this by passing false as the second argument.
FAQs
Util module from "Playing with Chaos"
We found that chaosjs 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.