
Product
Redesigned Repositories Page: A Faster Way to Prioritize Security Risk
Our redesigned Repositories page adds alert severity, filtering, and tabs for faster triage and clearer insights across all your projects.
await-to-go
Advanced tools
Async await wrapper for easy error handling like Golang
Special thanks to https://github.com/scopsy/await-to-js for the inspiration, actually I forked this project and make some small changes.
You need to use Node 7.6 (or later) or an ES7 transpiler in order to use async/await functionality. You can use babel or typescript for that.
npm i await-to-go --save
import go from 'await-to-go';
// If you use CommonJS (i.e NodeJS environment), it should be:
// const go = require('await-to-go').default;
async function asyncTaskWithCb(cb) {
let err, user, savedTask, notification;
// data and error are returned
[user, err] = await go(UserModel.findById(1));
// handling error here, not data itself
if (err) return cb('No user found');
[savedTask, err] = await go(TaskModel({userId: user.id, name: 'Demo Task'}));
if (err) return cb('Error occurred while saving task');
if(user.notificationsEnabled) {
[, err] = await go(NotificationService.sendNotification(user.id, 'Task Created'));
if (err) return cb('Error while sending notification');
}
if(savedTask.assignedUser.id !== user.id) {
[notification, err] = await go(NotificationService.sendNotification(savedTask.assignedUser.id, 'Task was created for you'));
if (err) return cb('Error while sending notification');
}
cb(null, savedTask);
}
async function asyncFunctionWithThrow() {
const [user, err] = await go(UserModel.findById(1));
if (err) throw new Error(err);
}
interface ServerResponse {
test: number;
}
const p = Promise.resolve({test: 123});
const [data, err] = await go<ServerResponse>(p);
console.log(data.test);
MIT
FAQs
Async/await wrapper for easy error handling in js
The npm package await-to-go receives a total of 0 weekly downloads. As such, await-to-go popularity was classified as not popular.
We found that await-to-go 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.
Product
Our redesigned Repositories page adds alert severity, filtering, and tabs for faster triage and clearer insights across all your projects.
Security News
Slopsquatting is a new supply chain threat where AI-assisted code generators recommend hallucinated packages that attackers register and weaponize.
Security News
Multiple deserialization flaws in PyTorch Lightning could allow remote code execution when loading untrusted model files, affecting versions up to 2.4.0.