
Research
/Security News
10 npm Typosquatted Packages Deploy Multi-Stage Credential Harvester
Socket researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.
callbag-pipe
Advanced tools
/**
pipe or lodash's flow.callbag-pipe using R.pipe could look like this:npm install callbag-pipepipe, then pass it to a forEach:const interval = require('callbag-interval');
const forEach = require('callbag-for-each');
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)
);
forEach(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
pipe to go all the way from source to sink:const interval = require('callbag-interval');
const forEach = require('callbag-for-each');
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),
forEach(x => console.log(x))
);
// X2,Y0
// X3,Y0
// X4,Y0
// X5,Y0
// X6,Y0
// X6,Y1
// X7,Y1
// X8,Y1
// X9,Y1
// X9,Y2
s => pipe(s, ...:const interval = require('callbag-interval');
const forEach = require('callbag-for-each');
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)
),
forEach(x => console.log(x))
);
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),
forEach(x => console.log(x))
);
*/
function pipe(...cbs) { let res = cbs[0]; for (let i = 1, n = cbs.length; i < n; i++) res = cbsi; return res; }
module.exports = pipe;
FAQs
Utility function for plugging callbags together in chain
The npm package callbag-pipe receives a total of 1,789 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 researchers found 10 typosquatted npm packages that auto-run on install, show fake CAPTCHAs, fingerprint by IP, and deploy a credential stealer.

Product
Socket Firewall Enterprise is now available with flexible deployment, configurable policies, and expanded language support.

Security News
Open source dashboard CNAPulse tracks CVE Numbering Authorities’ publishing activity, highlighting trends and transparency across the CVE ecosystem.