0

我使用此命令由 browsersync/node 服务器运行:

browser-sync start --server --files "**/*.html, **/*.js, **/*.css" --port 8005

我得到的结果是(我在网上的任何地方都找不到):

[BS] Local URL: http://localhost:false
[BS] External URL: http://10.26.104.175:false
[BS] Serving files from: ./
[BS] Watching files...

我不知道应该从哪里开始诊断这个问题。有人有什么建议吗?

browser-sync 1.9.0 节点版本 v0.10.35 OS X Yosemite 10.10.1

4

1 回答 1

0

browser-sync 内部依赖 portscanner-plus/ portscanner 中的损坏依赖将使用 ~0.2.2 版本(当前不兼容的 0.2.3)

卸载 0.2.3 并重新安装 portscanner@0.2.2 特定版本修复了该问题。从 browser-sync/node_modules/portscanner-plus/ 目录运行命令:

npm uninstall portscanner
npm install portscanner@0.2.2
于 2015-01-16T16:33:37.993 回答