是否可以在 browsersync 中打开例如 facebook.com 页面?

Is it possible to open for example facebook.com page in browsersync?

我需要在多个设备上打开一个页面,但我不是开发人员(我没有该站点的项目)并且我想使用 facebook.com 这样的现有页面。可以使用 browsersync 吗?

您可以打开网络上的任何网址。

不过你必须安装 2 个主要的东西。

  1. 您必须已经安装了 Node。这是一个很好的工作指南。 如何 安装 npm 和 node
  2. 您必须在您的计算机上安装 browser-sync 机器像这样:

    npm install -g browser-sync
    

安装完所有内容后,您可以 运行 在终端中执行此命令,如下所示:

browser-sync start -p "https://facebook.com"

在 运行ning 之后你应该得到这样的结果:

[BS] Proxying: https://facebook.com
[BS] Access URLs:
--------------------------------------
Local: https://localhost:3000
External: https://192.168.1.143:3000
--------------------------------------
UI: http://localhost:3001
UI External: http://192.168.1.143:3001