我正在尝试编写一个批处理文件来启动我的TCP服务器和带有这些命令的服务器。 到目前为止,我有:
if not "%minimized%"=="" goto :minimized
set minimized=true
@echo off
cd "C:path\to\my\foler"
REM Next command opens tcp-server.js and server
start node tcp-server.js
start node start.js
start /d "C:path\to\my\foler" chrome.exe localhost:5000
现在,以上这些也启动了TCP服务器和我的服务器,我。例如,如果在Chrome上输入localhost:5000
等,它确实会开始工作,但是:
tcp-server.js
和start.js
。答案 0 :(得分:0)
再次 - 我发现自己是一个解决方案 - 希望有一天能帮到某人! :)
@echo off
cd "C:\path\to\the\folder"
start /min node tcp-server.js
start /min node start.js
start /d "C:\to\the\folder" chrome.exe
http://localhost:5000/folder/page.html%~n1%~x1