
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.
special functions of GNU Scientific Library for JS
Via npm:
npm install gsl-sf
To use it inside node:
var sf = require("gsl-sf");
For a full documentation of the original C functions, visit https://www.gnu.org/software/gsl/manual/html_node/Special-Functions.html#Special-Functions. The prefix gsl_sf_ was removed from the original function definitions. For example, while in C you would call gsl_sf_gamma (x) to evaluate the Gamma function at value x , the function is exported simply as gamma(x).
Example:
gamma(3);
Output:
2
Alternatively, we can use the result object or the result_e10 class to store the return value of the function:
var res = new sf.result()
sf.gamma(3, res)
The result object has two keys: val contains the value and err contains an estimate of the absolute error.
Code:
console.log("The value is " + res.val + ", the error is " + res.err)
Output:
The value is 2, the error is 4.440892098500626e-16
FAQs
special functions of GNU Scientific Library for JS
We found that gsl-sf 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.