如何使用普通的NodeJS Portable"执行节点脚本。 .EXE?
在其他地方得到了回答。
1。进入: NodeJS Portable \ App
2。打开" Server.cmd"
3. 编写脚本的路径
cd ../account/example/
4. 编写节点命令
node test.js
5. 现在只需启动NodeJsPortable.exe
完整Server.cmd示例
@echo off
title Steam - Test BOT
cls
echo.
echo Node
node --version
echo.
cd ../account/example/
node test.js
cmd /k