Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
await-to-done
Advanced tools
Read this in other languages: English | 简体中文
# use pnpm
$ pnpm install await-to-done
# use npm
$ npm install await-to-done --save
import to from 'await-to-done'
const [err, data] = await to(/* promise function */)
const to = require('await-to-done')
const [err, data] = await to(/* promise function */)
import to from 'await-to-done'
const bar = () => new Promise<boolean>()
const foo = () => new Promise<string>()
const [err, data] = await to(bar(), foo()) // data = [boolean, string]
// or pass in an Array
const [err, data] = await to([bar(), foo()]) // data = [boolean, string]
<script src="https://unpkg.com/await-to-done@latest/dist/index.global.prod.js"></script>
<script>
;(async () => {
const to = window.awaitToDone
const [err, data] = await to(/* promise function */)
})()
</script>
Please open an issue here.
2024.05.30 v1.1.1
FAQs
Async await wrapper for easy error handling
The npm package await-to-done receives a total of 44 weekly downloads. As such, await-to-done popularity was classified as not popular.
We found that await-to-done demonstrated a healthy version release cadence and project activity because the last version was released less than 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.