
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.
given several glsl files as input, produce a require'able JS module exporting a program object as output
transform glsl files into a require'able JS module -- requires the resulting module
to have programify on path.
programify [-v|--vertex vertex file] [-f|--fragment fragment file] [-h|--help] file, file...
turn a series of glsl files into a `require`-able JS module.
outputs the program on stdout.
arguments:
--vertex path, -v path consider the file a vertex shader, and include it
in the output.
--fragment path, -f path consider the file a fragment shader, and include it
in the output.
when you require the resulting module, you'll get a function taking a WebGLContext as
an argument -- and when executed, will return a Program object with linked uniforms,
attributes, and a program handle.
all uniforms will be available on the program as program.uniforms.<name> as getter/setter
objects. supports structs, lists, and all builtin types. you can even set all of the uniforms
at once using an object literal!
npm install -g programify
MIT
FAQs
given several glsl files as input, produce a require'able JS module exporting a program object as output
The npm package programify receives a total of 2 weekly downloads. As such, programify popularity was classified as not popular.
We found that programify 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.