@jobscale/shell
v0.0.1
Published
shell exec spawn
Downloads
3
Readme
install
npm i -S jobscale/shell
example
const { Shell } = require('shell');
const main = () => {
new Shell().spawn('curl', ['ifconfig.io'])
.then(() => logger.info(text));
};
(() => {
main();
})();