Skip to content
This repository has been archived by the owner on Jun 6, 2019. It is now read-only.
/ grunt-jsmeter Public archive

Grunt plugin to run jsmeter to get metrics out of the code quality

Notifications You must be signed in to change notification settings

joseph-jja/grunt-jsmeter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

grunt-jsmeter

Grunt plugin to run jsmeter to get metrics out of the code quality ( jsmeter can be found https://code.google.com/p/jsmeter/ ). This is a grunt plugin to enable generating reports out of the jsmeter npm module.

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

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

grunt.loadNpmTasks('grunt-jsmeter');

The "jsmeter" task

Overview

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

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

Files

files.src

Type: Array Default value: []

An array of files.

Options

options.dest

Type: String Default value: 'log'

A string value that is used to identify the location output.
The default is log, but if the console render is used then this does nothing.

options.engine

Type: String Default value: 'console'

A string value that is used to identify the engine to render the output.
The default is console. Alternative renders available are LogRender.

options.template

Type: String Default value: 'none'

A string value that is used to identify the handlebars template that should be used to render each page. The default template is templates/page.hbs.

options.indexTemplate

Type: String Default value: 'none'

A string value that is used to identify the handlebars template that should be used to render each page. The default template is templates/index.hbs.

Usage Examples

Default Options

In this example, the default options are used to do something with whatever. So if the testing file has the content Testing and the 123 file had the content 1 2 3, the generated result would be Testing, 1 2 3.

grunt.initConfig({
  jsmeter: {
    files: {
      src: ['src/testing', 'src/123'],
    },
  },
})

Custom Options

In this example, custom options are used to do something else with whatever else. So if the testing file has the content Testing and the 123 file had the content 1 2 3, the generated result in this case would be Testing: 1 2 3 !!!

grunt.initConfig({
  jsmeter: {
    files: {
      src: ['src/testing', 'src/123'],
    },
    options: {
      dest: 'logs',
      engine: 'LogRender',
    },
  },
})

Contributing

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

Release History

(Nothing yet)

About

Grunt plugin to run jsmeter to get metrics out of the code quality

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •