
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@blakek/fn-pipe
Advanced tools
đźš° Compose functions and promises to make a pipeline
Code can become complex when several functions wrap others or reduce()
is
abused for a list of funtions.
This is an alternative that allows creating a pipeline of the functions and calls them in order.
Using Yarn:
$ yarn add @blakek/fn-pipe
…or using npm:
$ npm i --save @blakek/fn-pipe
This example fetches a list of todos from a server, filters for completed todos, and counts the result.
import { fnPipe } from 'fn-pipe';
const userId = 5;
const getCompletedCount = fnPipe([
userId => fetch(`https://jsonplaceholder.typicode.com/todos?userId=${userId}`)
todos => todos.filter(todo => todo.complted),
todos => todos.length
], userId);
getCompletedCount(); //» 12
fnPipe
function fnPipe([fn, ...fns]: Function[], initialValue?: any): Promise<any>;
Node.js and Yarn are required to work with this project.
To install all dependencies, run:
yarn
yarn build | Builds the project to ./dist |
yarn format | Format the source following the Prettier styles |
yarn test | Run project tests |
yarn test --watch | Run project tests, watching for file changes |
MIT
FAQs
đźš° Compose functions and promises to make a pipeline
We found that @blakek/fn-pipe 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
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.