
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.
@futoin/optihelp
Advanced tools
FutoIn OptiHelp is Node.js module optimization helper.
Unlike simple benchmark tools, FutoIn OptiHelp stores base and best results. It helps you to understand how new optimization and other changes affect performance of your project over time.
Documentation --> FutoIn Guide
Author: Andrey Galkin
Command line:
$ npm install @futoin/optihelp --save
or:
$ yarn add @futoin/optihelp --save
test/results in project root by default.
dst_root option.test_time*warmup_ratio options,test_time option,pass option).v8-profiler module.process.hrtime() with nanosecond resolution is used.optihelp.js in your tests folder with Suite of tests.optimization-refdata.
optihelp.js test again and observe the results.const optihelp = require('@futoin/optihelp');
optihelp('Suite Name', { test_time : 5, pass : 3 } )
.test( 'Async Test', (done) => { /* ... */; done() } )
.test( 'Sync Test', () => { /* ... */; } )
.start((report) => console.log(report));
Module Optimization Helper
Kind: global class
C-tor
| Param | Type | Default | Description |
|---|---|---|---|
| name | string | suite name | |
| options | object | various options | |
| options.pass | integer | 2 | how many passes to run |
| options.dst_root | string | "'test/results'" | result history folder |
| options.test_time | float | 5 | how long to run a single pass of each test in seconds |
| options.warmup_ratio | float | 1 | how long to warmup based on test_time |
| options.profile_ratio | float | 0.1 | how long to profile based on test_time |
| options.bench_delay | float | 1 | benchmark delays after warmup |
| options.do_profile | boolean | false | run v8-profiler, if true |
| options.check_prod | boolean | true | ensure running in production env |
| options.report_file | string | null | store report in file, if true |
OptiHelperExecute test several times
Kind: instance method of OptiHelper
Returns: OptiHelper - self for chaining
| Param | Type | Description |
|---|---|---|
| name | string | test name |
| cb | callable | test callback |
Start execution of tests
Kind: instance method of OptiHelper
| Param | Type | Description |
|---|---|---|
| cb | callable | completion callback |
FAQs
FutoIn package optimization helper
We found that @futoin/optihelp 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.