在Windows服务上执行“grunt serve”

时间:2015-10-01 14:36:59

标签: node.js gruntjs

我有一台安装了nodejs的Windows服务器PC。

我需要在启动时自动执行我的grunt应用程序,我想使用Windows服务。

解决方法可能是使用链接在“startup”文件夹中启动“cmd”,但是Windows服务更好......有办法吗?

提前谢谢

卢卡

1 个答案:

答案 0 :(得分:1)

你可以用winser做到这一点: https://www.npmjs.com/package/winser

示例:

如果您的gruntfile在D:\app上,并且您希望gruntfile在D:\app (cwd)中执行,而grunt isnt在您的PATH中(grunt [not grunt-cli] is installed locally)

winser -i --startcmd "node D:\app\node_modules\grunt\bin\grunt --base D:\app --gruntfile D:\app\gruntfile.js"