Puoi utilizzare richiamate come:
var getResponse = (key, field, success, error) =>{
client.hget(key,field, function(err,reply){
if(!err) {
success(reply);
}
else {
error(err);
}
});
};
getResponse("employee","b",function success(reply){
//here you get the reply
}, function error(err) {
//error
});
Se stai utilizzando Node versione 6 o successiva, puoi utilizzare promise o async await. Puoi trovare maggiori dettagli al seguente link:http://exploringjs.com/es6/ch_promises.html