Skip to content

sideroad/grunt-wpt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grunt-wpt

Grunt plugin for continuously measurement of WebPageTest

Getting Started

This plugin requires Grunt >=0.4.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-wpt --save-dev

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

grunt.loadNpmTasks('grunt-wpt');

The "wpt" task

Overview

In your project's Gruntfile, add a section named wpt to the data object passed into grunt.initConfig(). Plugin output JSON and HTML to dest which summarized results after executing WebPageTest.

grunt.initConfig({
  wpt: {
    options: {
      locations: ['Tokyo', 'SanJose_IE9'],
      key: process.env.WPT_API_KEY
    },
    sideroad: {
      options: {
        url: [
          'http://sideroad.secret.jp/',
          'http://sideroad.secret.jp/articles/',
          'http://sideroad.secret.jp/plugins/'
        ]
      },
      dest: 'tmp/sideroad/'
    }
  }
});

Options

options.locations

Type: Array of String Default value: ['SanJose_IE9']

Array of testing locations.

Please check https://www.webpagetest.org/getLocations.php to confirm valid locations.

options.URL

Type: Array of String Default value: []

Array of testing URL *Required

If you want to know more detail, please see also WebPageTest API

Examples

http://sideroad.github.io/sample-wpt-page/

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

(Nothing yet)

About

Grunt WebPageTest plugin for measure with time

Resources

License

Stars

Watchers

Forks

Packages

No packages published