当前位置: 代码迷 >> Web前端 >> 批处理下令参数传递给node
  详细解决方案

批处理下令参数传递给node

热度:339   发布时间:2012-07-25 09:43:05.0
批处理命令参数传递给node

1 新建bat文件wal.bat(c:/bat/wal.bat)

?

:: %~d0
:: cd %~dp0
@echo off
node test.js %*

?

2 新建test.js文件(c:/bat/test.js)

?

var args = process.argv.slice(1);
console.log(args);

?

3 运行cmd

?

4 输入命令 wal help

?

?

这样就能通过批处理文件将命令 “wal” 后的参数“help”传递给node。

?

以上为写打包工具时总结。

?

?

?

  相关解决方案