I'm trying to write a simple function that converts node-style callback functions to promises, so I can use them with async/await.
Current code:
function toPromise(ctx, func, ...args) {
let newPromise;
args.push((err, res) => {
newPromise = new Promise((resolve, reject)=> {
if(err) reject(err);
else{
resolve(res)
};
});
});
func.apply(ctx, args);
return newPromise;
}
example usage:
const match = await toPromise(user, userparePassword, password);
//trying to avoid the following:
userparePassword(password, (err, res) => {
... });
This probably doesn't make any sense with some great libraries out there, but I'm just trying to code this as an exercise.
Problem is of course match evaluates to undefined, and apparently the promise gets resolved after the await syntax line.
Any idea how I can resolve this issue?
I'm trying to write a simple function that converts node-style callback functions to promises, so I can use them with async/await.
Current code:
function toPromise(ctx, func, ...args) {
let newPromise;
args.push((err, res) => {
newPromise = new Promise((resolve, reject)=> {
if(err) reject(err);
else{
resolve(res)
};
});
});
func.apply(ctx, args);
return newPromise;
}
example usage:
const match = await toPromise(user, user.parePassword, password);
//trying to avoid the following:
user.parePassword(password, (err, res) => {
... });
This probably doesn't make any sense with some great libraries out there, but I'm just trying to code this as an exercise.
Problem is of course match evaluates to undefined, and apparently the promise gets resolved after the await syntax line.
Any idea how I can resolve this issue?
Share Improve this question asked Nov 2, 2015 at 11:47 SenecaSeneca 2,4122 gold badges21 silver badges35 bronze badges2 Answers
Reset to default 10Since node v8.0.0 they added util.promisify
.
const util = require('util');
const fs = require('fs');
const stat = util.promisify(fs.stat);
stat('.').then((stats) => {
// Do something with `stats`
}).catch((error) => {
// Handle the error.
});
Ref: https://nodejs/api/util.html#util_util_promisify_original
Your problem is that you are constructing the newPromise
inside of the asynchronous callback. So you've still got undefined
when you return it. Instead, you will need to call the Promise
constructor immediately, and only put the resolve
/reject
in the asynchronous callback:
function toPromise(ctx, func, ...args) {
return new Promise((resolve, reject) => {
args.push((err, res) => {
if (err) reject(err);
else resolve(res);
});
func.apply(ctx, args);
});
}
See also How do I convert an existing callback API to promises?