批处理文件和localhost:5000

时间:2017-10-04 13:00:18

标签: node.js batch-file localhost

我正在尝试编写一个批处理文件来启动我的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等,它确实会开始工作,但是:

  • 我想自动开始显示我希望它运行的页面。
  • 另外,我希望最小化两个nodejs文件tcp-server.jsstart.js

1 个答案:

答案 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