有没有办法在我的构建脚本中使用 JavaScript 而不是 .CMD、.BAT 或 NAnt?
有没有办法在我的构建脚本中使用 JavaScript 而不是 .CMD、.BAT 或 NAnt?我感到疲倦或使用不同的语言来构建和部署脚本;当然有更好的方法吗?
Is there a way to use JavaScript for my build script instead of .CMD, .BAT or NAnt? I am getting tired or using a different language for my build and deploy scripts; surely there is a better way to do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
当然,有多种 JavaScript 实现可用于 shell 脚本编写。由于您似乎使用的是 Windows,因此有内置的 Windows Script Host 可以通过
cscript.exe
。 NodeJS 是另一个选项,我有时在 *nix 系统上使用它,但没有在 Windows 上使用过。Sure, there are several implementations of JavaScript that can be used for shell scripting. Since you seem to be using Windows, there's the built in Windows Script Host which can run command-line scripts via
cscript.exe
. NodeJS is another option, which I use sometimes on *nix systems but haven't used on Windows..你可能想尝试 nscript,它是一个 npm 包,明确设计用于替换 bash 或 python 之类的构建适合那些更熟悉 javascript 的人的脚本。欢迎任何反馈!
You might want to try nscript, it is a npm package explicitly designed to replace bash or python like build scripts for those who are more comfortable with javascript. Any feedback is welcome!