Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
callbag-pipe
Advanced tools
Utility function for plugging callbags together in chain. This utility actually doesn't rely on Callbag specifics, and is basically the same as Ramda's pipe
or lodash's flow
. Anyway, this exists just to play nicely with the ecosystem, and to facilitate the import of the function.
npm install callbag-pipe
Create a source with pipe
, then pass it to an observe
:
const interval = require('callbag-interval');
const observe = require('callbag-observe');
const combine = require('callbag-combine');
const pipe = require('callbag-pipe');
const take = require('callbag-take');
const map = require('callbag-map');
const source = pipe(
combine(interval(100), interval(350)),
map(([x, y]) => `X${x},Y${y}`),
take(10)
);
observe(x => console.log(x))(source); // X2,Y0
// X3,Y0
// X4,Y0
// X5,Y0
// X6,Y0
// X6,Y1
// X7,Y1
// X8,Y1
// X9,Y1
// X9,Y2
Or use pipe
to go all the way from source to sink:
const interval = require('callbag-interval');
const observe = require('callbag-observe');
const combine = require('callbag-combine');
const pipe = require('callbag-pipe');
const take = require('callbag-take');
const map = require('callbag-map');
pipe(
combine(interval(100), interval(350)),
map(([x, y]) => `X${x},Y${y}`),
take(10),
observe(x => console.log(x))
);
// X2,Y0
// X3,Y0
// X4,Y0
// X5,Y0
// X6,Y0
// X6,Y1
// X7,Y1
// X8,Y1
// X9,Y1
// X9,Y2
To use pipe inside another pipe, you need to give the inner pipe an argument, e.g. s => pipe(s, ...
:
const interval = require('callbag-interval');
const observe = require('callbag-observe');
const combine = require('callbag-combine');
const pipe = require('callbag-pipe');
const take = require('callbag-take');
const map = require('callbag-map');
pipe(
combine(interval(100), interval(350)),
s => pipe(s,
map(([x, y]) => `X${x},Y${y}`),
take(10)
),
observe(x => console.log(x))
);
This means you can use pipe to create a new operator:
const mapThenTake = (f, amount) =>
s => pipe(s, map(f), take(amount));
pipe(
combine(interval(100), interval(350)),
mapThenTake(([x, y]) => `X${x},Y${y}`, 10),
observe(x => console.log(x))
);
FAQs
Utility function for plugging callbags together in chain
The npm package callbag-pipe receives a total of 5,200 weekly downloads. As such, callbag-pipe popularity was classified as popular.
We found that callbag-pipe demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.