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

时间:2017-02-07 14:26:00

标签: browser-sync

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

1 个答案:

答案 0 :(得分:0)

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

你必须安装2件主要的东西。

  1. 您必须安装Node。这是一本很好的工作指南。 How to install npm and node
  2. 您必须在您的网站上安装浏览器同步 这样的机器:

    npm install -g browser-sync
    
  3. 安装完所有内容后,您可以在终端中运行此命令,如下所示:

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

    跑步后你应该得到这样的结果:

    [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