
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
highland-process
Advanced tools
Turn a process into a highland stream or pipe through a process.
npm install highland-process
var _ = require('highland');
var highlandProcess = require('highland-process');
var spawn = require('child_process').spawn;
var tee = spawn('tee');
var ls = spawn('ls');
_(['hello how are you?'])
.through(highlandProcess.through(tee))
.pull(function(error, value) {
// value is a buffer with "hello how are you?" that has been piped through tee
});
highlandProcess.from(ls)
.split()
.toArray(function(values) {
// each line of output from ls
});
FAQs
Utility that lets you turn a process into a highland stream.
The npm package highland-process receives a total of 6,478 weekly downloads. As such, highland-process popularity was classified as popular.
We found that highland-process 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.