Answers:
在记事本中创建一个名为startup.vbs的文件,并将此代码粘贴到其中。在启动时运行该文件(在您的启动文件夹中放置一个快捷方式)。
我自己无法正确测试node.js服务器行。让我知道事情的后续。
Dim objWshShell, ls, lc, la
set objWshShell = WScript.CreateObject("WScript.Shell")
ls = objWshShell.Run("cmd /k cd C:\the\path\to\your\server && node myServer.js", 0, false)
WScript.Sleep 1000 'Time in milliseconds
lc = objWshShell.Run("chrome localhost:8080", 1, false)
WScript.Sleep 1000 'Time in milliseconds
la = objWshShell.Run("""C:\Program Files (x86)\Notepad++\notepad++.exe""")
set objWshShell = nothing
将应用程序和延迟更改为您需要的