
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.
Elastic search CLI for nodejs, using elucene to provide FIELDS, SORT, and LIMIT.

$ npm install -g es-cli
Usage: es [options] [query]
Options:
-h, --help output usage information
-V, --version output the version number
-u, --url <url> elastic search url
-c, --count output result count
-T, --types output log types
-S, --stats output log stats
Since manually specifying --url is annoying, you may want to alias this executable:
alias logs='es -u <es-url> --index logs --type log'
Allowing you to simply run:
$ logs level:error AND hostname:api6-1
Check out the last 10 errors:
$ es -u <es-url> level:error
Check out the last 1000 events for the users luna and tobi:
$ es -u <es-url> user:luna OR user:tobi LIMIT 1000
Limit the number of results and sort:
$ es -u <es-url> level:error LIMIT 10 SORT timestamp:desc
Specify the fields to respond with:
$ es -u <es-url> level:error FIELDS message
$ es -u <es-url> login FIELDS id name
Log objects should use the following format:
{ timestamp: <timestamp>,
hostname: <hostname>,
message: <message-json>,
level: <log-level>,
type: <log-type> }
For example:
{ timestamp: 1390948474720,
hostname: 'data',
message: '{"foo":"bar"}',
level: 'info',
type: 'user logout' }
MIT
FAQs
Elasticsearch CLI for querying your logs
We found that es-cli 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.