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.
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');
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.
},
},
})
Type: Array
Default value: []
An array of files.
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.
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.
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.
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.
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'],
},
},
})
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',
},
},
})
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.
(Nothing yet)