Extend core.io with promised commands
npm install core.io-command-promisedThis module extends core.io context object with a new method: promisedCommand.
We can dispatch a command event and await the command's resolution:
``js`
let response = await context.promisedCommand('api.get', event);
```
$ npm i -S core.io-command-promised