我已经安装了 node.js 和必要的包来运行browserquest。我已经启动了 browserquest 服务器,它在端口 8080 上运行,当我进入浏览器并输入http://localhost:8080/status时,我可以看到服务器正在运行并且当前没有连接客户端。我在 client/config/build_config.json 文件中使用这样的配置构建客户端
{
"host": "http://127.0.0.1",
"port": 8080
}
我在 bin/build.sh 中构建我的客户端。然后我运行这个命令来创建 http-server 来服务客户端文件。
http-server path-to-client-build -p 8000
我可以通过转到http://localhost:8000/index.html看到运行 httpserver 的索引页面,但是当我尝试连接时,它在说连接到服务器后卡住了。
注意:我正在使用这个 http-server 来托管客户端文件http://search.npmjs.org/#/http-server