0.1.1 • Published 6 years ago

grunt-chrome-headless v0.1.1

Weekly downloads
21
License
-
Repository
github
Last release
6 years ago

grunt-chrome-headless

Start a Google Chrome headless instance.

Getting Started

This plugin requires Grunt 1.0.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-chrome-headless --save-dev

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

grunt.loadNpmTasks('grunt-chrome-headless');

The "chrome_headless" task

Overview

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

grunt.initConfig({
  chrome_headless: {
    options: {
      // Task-specific options go here.
    },
    your_target: {
      // Target-specific file lists and/or options go here.
    },
  },
});

Options

options.port

Type: Int Default value: 9222

The remote debugging port which Google Chrome should use.

options.bin

Type: String Default value:

The full path under which Google Chrome can be found. By default google-chrome, google-chrome-stable and chromium are checked.

options.args

Type: Array Default value: []

Additional arguments to the command line.

Usage Examples

Default Options

grunt.initConfig({
  chrome_headless: {
    options: {
      port: 9222,
      bin: '/usr/bin/google-chrome'
    },
  },
});

Multiple instances

If you want to run multiple instances, use more than one target.

grunt.initConfig({
  chrome_headless: {
    cucumber: {
      options: {
        port: 9222
      }
    },
    mocha: {
      options: {
        port: 9223
      }
    }
  },
});

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

0.1.0

  • Initial release