0.0.3 • Published 7 years ago

grunt-web v0.0.3

Weekly downloads
1
License
-
Repository
github
Last release
7 years ago

grunt-web

Excute grunt tasks in browser or any http request

Getting Started

This plugin requires Grunt ~0.4.5

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-web --save-dev

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

grunt.loadNpmTasks('grunt-web');

The "web" task

Overview

In your project's Gruntfile, add a section named web to the data object passed into grunt.initConfig().

grunt.initConfig({
  web: {
    server: {
      host:"localhost",
	  port:8801
    }
  },
});

Options

options.host

Type: String

Default value: 'localhost'

主机地址

options.port

Type: Int

Default value: 8801

监听端口

Usage Examples

http://localhost:8801/ run task 'default'
or
http://localhost:8801/?t=jshint
or
http://localhost:8801/?t=default,jshint  run task 'default' and 'jshint'