shanejonas / grunt-contrib-livereload

Reload assets live in the browser.

Home Page:http://gruntjs.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

grunt-contrib-livereload Build Status

Reload assets live in the browser

Getting Started

This plugin requires Grunt ~0.4.0

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install grunt-contrib-livereload --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('grunt-contrib-livereload');

Livereload task

Run this task with the grunt livereload command.

grunt-contrib-livereload is composed of two tasks:

  • livereload-start: sets up a local server that will serve the needed js file and the wesocket that will control your browser
  • livereload: triggers the browser reload

Additionally a Connect middleware is available to inject a JS snippet into the page to that will connect the browser to the livereload server.

This task support multiple browsers, which means all the browsers listening on the livereload port will be reloaded at the same time.

Note that grunt-contrib-livereload is designed to use grunt-regarde instead grunt-contrib-watch (mainly due to shortcomings in the watch task which doesn't give access to changed files because it spawns tasks in subprocesses.)

The livereload-start task

This task starts a server (tiny-lr) in the background, which will:

  • serve the livereload.js
  • act as a websocket server: each browser that opens a websocket to this server will be refreshed

By default the server listens on port 35729, but this can be changed through the port options.

The livereload task

This task needs to be called to trigger a reload. It must be passed the list of files that have changed (i.e. livereload:foo.txt:bar.txt)

The middleware

A connect middleware (livereloadSnippet) is delivered as an helper (located in grunt-contrib-livereload/lib/utils). This middleware must be the first one inserted.

It will be inserted on the fly in your HTML and will connect back to the livereload server.

<!-- livereload snippet -->
<script>document.write('<script src=\"http://'
+ (location.host || 'localhost').split(':')[0]
+ ':" + port + "/livereload.js?snipver=1\"><\\/script>')
</script>

Options

port

Type: integer Default: 35729

The port the livereload server should listen on.

Example config

'use strict';
var path = require('path');
var lrSnippet = require('grunt-contrib-livereload/lib/utils').livereloadSnippet;

var folderMount = function folderMount(connect, point) {
  return connect.static(path.resolve(point));
};

module.exports = function (grunt) {
  // Project configuration.
  grunt.initConfig({
    livereload: {
      port: 35729 // Default livereload listening port.
    },
    connect: {
      livereload: {
        options: {
          port: 9001,
          middleware: function(connect, options) {
            return [lrSnippet, folderMount(connect, options.base)]
          }
        }
      }
    },
    // Configuration to be run (and then tested)
    regarde: {
      txt: {
        files: '**/*.txt',
        tasks: ['livereload']
      }
    }

  });

  grunt.loadNpmTasks('grunt-regarde');
  grunt.loadNpmTasks('grunt-contrib-connect');
  grunt.loadNpmTasks('grunt-contrib-livereload');

  grunt.registerTask('default', ['livereload-start', 'connect', 'regarde']);
};

Release History

  • 2013-02-25   v0.1.2   Strip query params from url. Set correct Content-Length for multi-byte files.
  • 2013-02-17   v0.1.1   Ensure Gruntfile.js is included on npm.
  • 2013-02-15   v0.1.0   First official release for Grunt 0.4.0.
  • 2013-02-03   v0.1.0rc8   Updated to work with latest grunt-regarde.
  • 2013-01-30   v0.1.0rc7   Initial release.

Task submitted by Frederick Ros

This file was generated on Mon Feb 25 2013 20:22:26.

About

Reload assets live in the browser.

http://gruntjs.com/

License:MIT License


Languages

Language:JavaScript 100.0%