
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
gean provides a mechanism for composable generator control with promises.
Promise based.$ npm install gean --save
gean(function * () {
// flow control here
});
gean accept a GeneratorFunction and returns a Promise
that allow for composability.
We can use gean to create simple a fetch function backed by
superagent. We'll use it to
read from the randomuser API and sum the number of male and female
gender entries per user.
import agent from 'superagent';
import gean from 'gean';
const fetch = uri => new Promise((yep, nope) => {
agent.get(uri).end((err, res) ? nope(err) : yep(res));
};
gean(function * () {
const uri = 'https://randomuser.me/api?results=10';
const res = yield fetch(uri);
const users = res.body.results;
const counter = {female: 0, male: 0};
for (let user of users)
counter[user.gender]++;
console.log(counter)
// { female: 8, male: 2 }
});
MIT
FAQs
Composable Generator Control
We found that gean 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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.