await-repl is a simple wrapper for repl.start() that handles lines starting with 'await ' differently: instead of outputting the Promise (or value) it only returns when the Promise is resolved or rejected
const awaitRepl = require('await-repl');
awaitRepl({
rejectionHandler: (err) => 'Promise rejection: ' + err,
awaitTimeout: 2000
});
await-repl passes options to repl.start()
- rejectionHandler
function for formatting Promise-rejections
it is passed acallback(err, res)
for returning the formatted error to the repl
returning a value is the same as callingcallback(returnValue)
- awaitTimeout
number of milliseconds before giving up waiting for Promises to be resolved
will act like a Promise-rejection withnew awaitRepl.AwaitTimeout()
> await 42
42
> await Promise.resolve(73)
73
> await new Promise((resolve, reject) => setTimeout(() => resolve('foo'), 1000))
/* After 1 second */
'foo'
>
> 42
42
> Promise.resolve(73)
Promise { 73 }
> new Promise((resolve, reject) => setTimeout(() => resolve('foo'), 1000))
Promise { <pending> }
>
Works only for lines starting with 'await ' so things like the following don´t work:
> let a = await getSomeValueFromDatabase(...)