New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

grunt-web-server

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-web-server

A Web Server task similar to Python's SimpleHTTPServer, with Cross-Origin Resource Sharing and No-Cache options.

latest
Source
npmnpm
Version
1.2.3
Version published
Weekly downloads
109
147.73%
Maintainers
1
Weekly downloads
 
Created
Source

grunt-web-server

A Web Server task for grunt similar to Python's SimpleHTTPServer, with Cross-Origin Resource Sharing and No-Cache options.

Getting Started

This plugin requires Grunt ~0.4.1

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

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

grunt.loadNpmTasks('grunt-web-server');

The "web_server" task

Overview

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

Please take special note of the foo: "bar" property below. For some reason an extra key with a non-object value is necessary for things to work. Clearly I'm not understanding something about writing a Grunt plugin here... would appreciate a pull or note if anyone knows what I'm doing wrong.

grunt.initConfig({
  web_server: {
    options: {
      cors: true,
      port: 8000,
      nevercache: true,
      logRequests: true
    },
    foo: 'bar' // For some reason an extra key with a non-object value is necessary
  },
})

Options

options.cors

Type: Boolean Default value: true

Whether to send Cross-Origin Resource Sharing headers.

options.port

Type: Int Default value: 1337

What port to server web requests on.

options.nevercache

Type: Boolean Default value: true

If true, then the server will send headers to try to force the browser to request files afresh each time.

options.logRequests

Type: Boolean Default value: true

If true, then the server will log all incoming requests and the HTTP status of their result.

Running

Once you've configured the web server as above, run the web server with:

grunt web_server

Terminate the web server with Ctrl-C

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

  • 2013-09-27 Initial release.

Keywords

gruntplugin

FAQs

Package last updated on 27 Sep 2013

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts