runscript
v1.6.0
Published
Run script easy!
Downloads
115,087
Readme
runscript
📢📢📢📢📢 You should use execa instead. 📢📢📢📢
Run script easy!
Installation
$ npm install runscript
Quick start
const runScript = require('runscript');
runScript('node -v', { stdio: 'pipe' })
.then(stdio => {
console.log(stdio);
})
.catch(err => {
console.error(err);
});
run with timeout
Run user script for a maximum of 10 seconds.
const runScript = require('runscript');
runScript('node user-script.js', { stdio: 'pipe' }, { timeout: 10000 })
.then(stdio => {
console.log(stdio);
})
.catch(err => {
console.error(err);
});
License
Contributors
|fengmk2|lusyn|walkthunder|popomore|ottomao|atian25| | :---: | :---: | :---: | :---: | :---: | :---: | akitaSummer|lgtm-com[bot]|semantic-release-bot|whxaxes
This project follows the git-contributor spec, auto updated at Thu Jan 11 2024 16:25:27 GMT+0800
.