0.0.7 • Published 8 years ago

browser-sync-core v0.0.7

Weekly downloads
2
License
Apache 2.0
Repository
github
Last release
8 years ago

Browsersync core Build Status

the engine that powers Browsersync - can be used standalone

Install

npm i browser-sync-core -D

Usage

bs.js

const bs = require('browser-sync-core');
bs.create({
	serveStatic: ['./app']
	files: ['./app']
});

package.json

{
  "name": "your-project",
  "scripts": {
  	"start": "node bs"
  },
  "devDependencies": {
    "browser-sync-core": "0.0.2",
  },
  "dependencies": {}
}