
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@blakek/compose
Advanced tools
🛠 Compose functions and promises
Code can become complex when several functions wrap others or reduce()
is used
to combine a list of funtions.
This is an alternative that allows composing a pipeline of functions. It calls each right-to-left and passes the output from the previous to the next.
Using Yarn:
$ yarn add @blakek/compose
…or using npm:
$ npm i --save @blakek/compose
import { compose } from '@blakek/compose';
const fetchUsers = () =>
Promise.resolve([
{ sites: { github: { username: 'blakek' } } },
{ sites: { github: { username: 'gsandf' } } },
{ sites: { github: { username: 'google' } } }
]);
const getUsers = compose(
users => users.map(user => user.sites.github.username),
fetchUsers
);
getUsers().then(console.log); //» [ 'blakek', 'gsandf', 'google' ]
compose
function compose(...[fn, ...fns]: Function[]): Function;
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
We found that @blakek/compose 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
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.