another-livereload

0.0.6 • Public • Published

another-LiveReload

Another LiveReload Server in Node.js Version.

What is LiveReload ? livereload.com

Installation

Install another-livereload width npmjs:

$ npm install another-livereload

Quickstart

$ anotherlr [-p port] [-i interval]

Middleware

Do more complex tasks before reload pages by useing middlewares.

var path = require('path');
var lr = require('another-livereload');

lr.rules(/\.(css|scss|js|html)$/);

lr.use(/\.scss$/, function (file, msg, next) {
  // ...
  next();
});

lr.watch(path.join(__dirname, 'public'));

lr.run();

License

© 2013, Po-Ying Chen, distributed under the MIT license.

Readme

Keywords

none

Package Sidebar

Install

npm i another-livereload

Weekly Downloads

0

Version

0.0.6

License

MIT

Last publish

Collaborators

  • poying