
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.
@cuties/created
Advanced tools
Cutie extension for creating objects with async arguments. It's based on the Async Tree Pattern.
npm install @cuties/created
npm test
npm run build
Let's say you have an object User:
class User {
constructor (name, email) {
this.name = name
this.email = email
}
}
But in some cases you can get name and email only via async calls, so you need User to have async arguments, but User is not an async object. This lib provides the object Created, which solves the problem.
const { Created } = require('@cuties/cutie')
const User = require('./User')
new Created(
User, new RetrievedSomehowUserName(), new RetrievedSomehowUserEmail()
).call()
And in this case Created represents User with properties from the specified async objects.
So, the signature of Created is
new Created(ObjThatYouNeedToCreate, ...asyncArgsOfObjThatYouNeedToCreate)
FAQs
Creates objects with async arguments.
We found that @cuties/created 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.