then-ify Make your synchronous function thenable. Install $ npm install then-ify --save Example var thenify = require('then-ify'); // Here we have a synchronous functionfunction syncFunction(input) { return input * input; } // Now you can call .then with then-ifythenify(syncFunction)(3) .then(function(output){ // output = 9 });