
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.
github-issues-stream
Advanced tools
Readable GitHub issues stream.
npm i --save github-issues-stream
Returns a Readable Stream of Github Issue objects.
Parameters:
repo: The repo containing the issues you want to fetch.options:
token: For private repos, you must specify a token. Can be generated here: https://github.com/settings/tokensquery: Github API issues query parameters.Example:
var githubIssues = require('github-issues-stream')
var repo = 'jprichardson/node-fs-extra'
console.log('\nfetching %s issues...\n', repo)
githubIssues(repo)
.on('data', function (issue) {
console.log(' #%d: %s', issue.number, issue.title)
})
.on('error', function (err) {
console.log('ERROR: ' + err)
})
.on('end', function () {
console.log('\ndone!\n')
})
MIT
Copyright (c) JP Richardson
FAQs
Readable stream for Github issues.
We found that github-issues-stream 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.