npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

buenos-jshint

v1.2.0

Published

JSHINT Node wrapper

Downloads

7

Readme

Buenos JSHINT!

A NodeJS wrapper around the JSHINT code linter, for your convenience.

Part of the buenos linting family: buenos-jshint, buenos-jscs, buenos-htmllint.

Installing

$ npm install --save-dev buenos-jshint

Usage

In a node file

var $buenosJshint = require('buenos-jshint');

$buenosJshint(options);

From your package.json

{
    "scripts": {
        "buenos-jshint": "buenos-jshint"
    }
}
$ npm run buenos-jshint

Options

{

    /**
     * Optional. Array of reporters. Each reporter is called with the jshint results
     */
    reporters: [
    
        // a reporter can be an array where key 0 is the function 
        [ someFunction ],
        
        // a reporter can also be given a config variable
        [ someFunction, optionalConfig ],
        
        // a reporter may also be a direct function, not wrapped in an array
        someFunction,
        
        // default value:
        [ $buenosJshint.reporter, { path: './reports/buenos-jshint.json' }]
        
    ],
    
    
    /**
     * Optional. Globs using minimatch. default value:
     */
    src: [
        './**/*.js',
        '!./**/node_modules/**/*',
        '!./**/bower_components/**/*',
        '!./**/*.spec.js'
    ],
        
    
    /**
     * Optional. Jshint rules. May be:
     * - a file path to the rules json
     * - an object containing the rules
     * When left out it will follow this order to get its config:
     * - a .jshintrc file in file folder or up
     * - any parent package.json with a jshintConfig property
     * - embedded config
     */
    jshintConfig: './myConfig.json'
}

API

BuenosJshint (class)

var $buenosJshint = require('buenos-jshint');

var instance = new $buenosJshint();

.log

The log object containing the status of the checked files.

.options

The parsed options object.

.promise

A promise that is resolved when the linter is complete. The log is provided as argument.

var $buenosJshint = require('buenos-jshint');

var instance = new $buenosJshint();
instance.promise.then(function (log) {
    // done processing!
    console.log(log);
});

reporter

The default reporter. Useful in case you want to combine your own reporter with the default reporter.

var $buenosJshint = require('buenos-jshint');

new $buenosJshint({
    reporters: [
        [ $buenosJshint.reporter, { path: './reports/buenos-jshint.json' }],
        myReporter
    ]
});

embeddedConfig

Returns the jshint config as embedded in the module.

var $buenosJshint = require('buenos-jshint');

console.log(
    $buenosJshint.embeddedConfig()
);

Reporters

You can specify your own reporters. A reporter is called as a function, the first argument being the log, the second argument being the reporter config (if defined).

var $buenosJshint = require('buenos-jshint');

new $buenosJshint({
    reporters: [
    
        // function, no config can be defined
        reporterWithoutConfig,
        
        // array of function, no config defined 
        [ reporterWithoutConfig ],
        
        // array of function and config obj
        [ reporterWithConfig, { myConfig: 'defined' } ]
    ]
});

function reporterWithoutConfig (log, config) {
    
    // log = BuenosJshint.log
    // config = undefined
    
}


function reporterWithConfig (log, config) {
    
    // log = BuenosJshint.log
    // config = { myConfig: 'defined' };
    
}

Log format

{
    
    // how many files are checked?
    "totalCount": 7,
    
    // how many total errors were found?
    "totalErrorCount": 0,
        
    // how many files passed?
    "successCount": 7,
    
    // how many files failed?
    "failureCount": 1,
    
    // object of files checked
    "files": {
    
        // file name
        "index.js": {
        
            // where did the jshint config come from?
            "jshintConfig": "embedded", // embedded, custom, or file path
            
            // how many errors were found in this file?
            "errorCount": 0,
            
            // array of errors found in this file
            "errors": [
                {
                    "id": "(error)",
                    "raw": "Unnecessary semicolon.",
                    "code": "W032",
                    "evidence": ";",
                    "line": 2,
                    "character": 1,
                    "scope": "(main)",
                    "reason": "Unnecessary semicolon.",
                    "filename": "\\malformed\\syntaxerror.js"
                }
            ],
            
            // did the file pass the check?
            "passed": true
        }
    }
}