📢📢📢📢📢 You should use execa instead. 📢📢📢📢
Run script easy!
$ npm install runscript
const runScript = require('runscript');
runScript('node -v', { stdio: 'pipe' })
.then(stdio => {
console.log(stdio);
})
.catch(err => {
console.error(err);
});
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);
});
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
.