
Security News
GitHub Actions Pricing Whiplash: Self-Hosted Actions Billing Change Postponed
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.
create-dependency-stream
Advanced tools
Create a stream of fully resolved dependencies from a package (and it's dependencies)
var createDependencyStream = require('create-dependency-stream')
var pkgJSON = require('./package.json');
var stream = createDependencyStream(pkgJSON, {
registry: 'http://registry.npmjs.org' // optional
});
stream.on('data', console.log);
/* emits dependency objects like: */
{ name: 'request',
versionRange: '2.x',
version: '2.21.0',
package: { /* .. parsed package.json contents .. */ },
parent: { /* .. dependency object that included this dependency .. */ }
dependencies: { /* .. mapping from dependency names to dependency object .. */ }
}
Given a parsed package.json with dependencies, this will create a stream of "dependency objects" containing the fully resolved versions and corresponding package.json contents for every dependency and every child dependency, in a way that (should be) completely compatible with npm.
MIT
FAQs
Create a stream of fully resolved dependencies from a package (and it's dependencies)
We found that create-dependency-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.

Security News
GitHub postponed a new billing model for self-hosted Actions after developer pushback, but moved forward with hosted runner price cuts on January 1.

Research
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.