0.1.1 • Published 10 years ago

grunt-dom-prof v0.1.1

Weekly downloads
3
License
-
Repository
github
Last release
10 years ago

grunt-dom-prof

Grunt plugin for dom-prof

Getting Started

This plugin requires Grunt ~0.4.4

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-dom-prof --save-dev

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

grunt.loadNpmTasks('grunt-dom-prof');

The "dom_prof" task

Overview

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

grunt.initConfig({
  dom_prof: {
    options: {
      // Task-specific options go here.
    }
  },
});

Options

options.url

Type: String

The url of the site to profile.

options.dest

Type: String

The report destination relative to the project root. If this is empty, then it will dump the results to the console.

options.raw

Type: Boolean Default value: false

Dump the results as the JSON object.

Usage Examples

Default Options

By default the file gets rendered out as a CSV.

grunt.initConfig({
  dom_prof: {
    options: {
      url: 'http://www.google.com',
      dest: 'reports/report.csv'
    }
  },
});

Custom Options

If you want the JSON, specify the raw: true key/value pair.

grunt.initConfig({
  dom_prof: {
    options: {
      url: 'http://www.google.com',
      dest: 'reports/report.json',
      raw: true
    }
  },
});

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)