Skip to content

iammerrick/grunt-connect

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grunt-connect

Run a connect server. The built in Grunt server task is terrific for the great majority of cases, however sometimes you just want to ability to run a web server on a local file system and interact with the files using a web browser. For that reason, grunt-connect's default behaviour is to run indefinitely.

Getting Started

Install this grunt plugin next to your project's grunt.js gruntfile with: npm install grunt-connect

Then add this line to your project's grunt.js gruntfile:

grunt.loadNpmTasks('grunt-connect');

Documentation

Settings

  • port - port to listen, default 1337
  • base - base directory, default ".", unless combine is used
  • combine - combine multiple bases into single server. If file is not found in first one, it tries to find in second, and so on. If base is also specified, it is on first position.

Content of directories is listed. In case multiple bases, it lists only files from first base with given directory (directory contents are not combined).

Since, these tasks are essentially asynchronous tasks that don't close. It's best to target them directly. For example, given the following configuration:

grunt.initConfig({
  connect: {
    example: {
      port: 1337,
      base: 'example'
    },
    test: {
      port: 1338,
      base: 'test',
      keepAlive: false
    },
    meta: {
      port: 1339,
      base: 'tasks'
    },
    combined: {
      port: 1340,
      combine: [
        'example',
        'tasks'
      ]
  }
});

One might target the meta server using grunt connect:meta

License

Copyright (c) 2012 Merrick Christensen Licensed under the MIT license.

About

A Grunt plugin to run a server indefinitely.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •