目录引言一、node原生模块:child_process使用二、npm包:shelljs引言 在实现前端工程化的过程中,经常需要在一个js脚本中去执行其他node/npm或者其他sh
在实现前端工程化的过程中,经常需要在一个js脚本中去执行其他node
/npm
或者其他shell
命令。本篇就介绍两种node
调用shell
的方法。
node原生api介绍:child_process.exec()
: 衍生 shell 并在该 shell 中运行命令,完成后将 stdout 和 stderr 传给回调函数。
child_process.execFile()
: 与 child_process.exec() 类似,不同之处在于,默认情况下,它直接衍生命令,而不先衍生 shell。
child_process.fork()
: 衍生新的 node.js 进程并使用建立的 IPC 通信通道(其允许在父子进程之间发送消息)调用指定的模块。
child_process.execSync()
: child_process.exec() 的同步版本,其将阻塞 Node.js 事件循环。
child_process.execFileSync()
: child_process.execFile() 的同步版本,其将阻塞 Node.js 事件循环。
const process = require("child_process");
// 执行 npm run build 命令
;(function() {
process.exec('npm run build', (error, stdout, stderr) => {
if (!error) {
// 成功
} else {
// 失败
}
});
})();
npm i -D shelljs
const shell = require('shelljs');
// 同步
// 执行 git status 命令
const { code } = shell.exec('git status');
// 异步回调
// 执行 git add . 命令
shell.exec('git add .', function(code, stdout, stderr) {
console.log('Exit code:', code);
console.log('Program output:', stdout);
console.log('Program stderr:', stderr);
if (code===0) {
console.log('成功')
// do something
}
});
参考文档:
Http://nodejs.cn/api/child_process.html
https://www.npmjs.com/package/shelljs
以上就是node执行cmd或shell命令使用介绍的详细内容,更多关于node执行cmd shell命令的资料请关注编程网其它相关文章!
--结束END--
本文标题: node执行cmd或shell命令使用介绍
本文链接: https://lsjlt.com/news/153082.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-01-12
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
2023-05-20
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0