Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-query-browser-sync

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-query-browser-sync

This plugin provides BrowserSync with a single line of code

  • 1.2.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

gulp-query-browser-sync

BrowserSync plugin for gulp-query

Uses browser-sync

This plugin provides BrowserSync with a single line of code

npm install gulp-query gulp-query-browser-sync

Example

Paste the code into your gulpfile.js and configure it

let build = require('gulp-query')
  , bs = require('gulp-query-browser-sync')
;
build((query) => {
    query.plugins([bs])
      .bs(['src/js/**/*.js'],'example.com') // Be sure to read the Attention below
      .bs(['src/js/**/*.js'],'example2.com',{bs:{port:3010,ui:{port:3011}}})
    ;
});

And feel the freedom

gulp watch // Watching change
gulp bs watch // Only for bs files
gulp bs:app watch
...

Options

.bs({
    name: "task_name", // For gulp bs:task_name
    watch: "src/js/**/*.js", // ["src/js/**/*.js", "views/**/*.php"]
    injectCSS: true, // For reloading only css, if css file was changed
    bs: {
      proxy: "example.com",
      port: 3000,
      ui: 3001,
      ...
      // All options for BrowserSync
    }
})

// short
.bs([watch], proxy, task_name);

// short with config
.bs([watch], proxy, {config});

*Attention

In some cases, you need to change the /etc/hosts to work proxy

127.0.0.1 localhost
127.0.0.1 example.com ## insert proxy host
...

If you are working through the VirtualBox/Vagrant, you need to turn off sendfile.
For NGINX (/etc/nginx/nginx.conf) add sendfile off;
For Apache EnableSendfile off

Keywords

FAQs

Package last updated on 06 Jan 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc