
Security News
Another Round of TEA Protocol Spam Floods npm, But It’s Not a Worm
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.
@simmo/task
Advanced tools
JavaScript utility that provides a consistent, clean return from promises. Particularly helpful when using await/async.
JavaScript utility that provides a consistent, clean return from promises. Particularly helpful when using await/async.
npm install @simmo/task
yarn add @simmo/task
task(<Promise>) => { error: <Any>, data: <Any> }task always returns an object. The object will contain two properties; error and data.
If the promise is resolved, error will be null and data will contain anything the promise has returned. If the promise is rejected, error will return the error provided by the promise and data will be null.
import task from '@simmo/task'
const { error, data } = await task(fetch('/some-api'))
if (error) {
// Failure
console.error(error)
} else {
// Success
console.log(data)
}
MIT © Mike Simmonds
FAQs
JavaScript utility that provides a consistent, clean return from promises. Particularly helpful when using await/async.
We found that @simmo/task 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
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.

Security News
PyPI adds Trusted Publishing support for GitLab Self-Managed as adoption reaches 25% of uploads

Research
/Security News
A malicious Chrome extension posing as an Ethereum wallet steals seed phrases by encoding them into Sui transactions, enabling full wallet takeover.