Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rmbl/grunt-chrome-headless
Run Google Chrome headless with grunt
https://github.com/rmbl/grunt-chrome-headless
chrome-headless google-chrome grunt grunt-plugins
Last synced: about 1 month ago
JSON representation
Run Google Chrome headless with grunt
- Host: GitHub
- URL: https://github.com/rmbl/grunt-chrome-headless
- Owner: rmbl
- License: mit
- Created: 2017-11-15T23:26:12.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-16T18:16:22.000Z (about 7 years ago)
- Last Synced: 2024-11-18T19:52:11.278Z (about 2 months ago)
- Topics: chrome-headless, google-chrome, grunt, grunt-plugins
- Language: JavaScript
- Size: 27.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# grunt-chrome-headless
> Start a Google Chrome headless instance.
## Getting Started
This plugin requires Grunt `1.0.0`If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:
```shell
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:
```js
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()`.```js
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
```js
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.```js
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](http://gruntjs.com/).