node-powershell-await
v1.0.4
Published
**Node-powershell await**
Downloads
5
Readme
Node-powershell await
Install:
npm install node-powershell-await
Example:
let Shell = require('node-powershell-await');
let ps = new Shell({
executionPolicy: 'Bypass',
noProfile: true
});
async function getNodeversion() {
ps.asyncAddCommand('node -v');
console.log(await ps.asyncInvoke());
}