|
1 年之前 | |
---|---|---|
.. | ||
node_modules | 1 年之前 | |
History.md | 1 年之前 | |
LICENSE.txt | 1 年之前 | |
README.md | 1 年之前 | |
index.d.ts | 1 年之前 | |
index.js | 1 年之前 | |
package.json | 1 年之前 |
📢📢📢📢📢 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 |
---|
This project follows the git-contributor spec, auto updated at Fri May 20 2022 10:00:09 GMT+0800
.