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

eslint-engine

v0.3.0

Published

Check JavaScript syntax using eslint

Downloads

33

Readme

eslint-engine

Check JavaScript syntax using eslint conveniently in your project

eslint-engine is a streamlined way to use eslint in your project. Just type eslint-check and you're done.

Status

Usage

Install it:

npm install -g eslint-engine

Then in your project, install eslint as a devDependency and create an .eslintrc. Or use one of these presets to help you out:

# pick one
eslint-install standard
eslint-install airbnb
eslint-install xo
eslint-install --help   # view all

Now run a check:

$ eslint-check

index.js:53:11: Expected indentation of 8 space characters but found 10. (indent)
index.js:57:39: Trailing spaces not allowed. (no-trailing-spaces)
index.js:59:48: There should be no space before ','. (comma-spacing)

Features

  • Convenient: eslint-engine checks all the JS files in your project while ignoring some common ignorables. It can also be ran as a global command, unlike eslint.

    # with eslint-engine
    eslint-check
    
    # with eslint
    ./node_modules/.bin/eslint '**/*.js' --ignore-pattern='node_modules'
  • Easy to install: presets for popular eslint configs can be installed easily.

    # with eslint-engine
    eslint-install standard
    
    # with eslint
    echo "{ extends: ['standard', 'standard-jsx'] }" > .eslintrc
    npm install --save eslint eslint-config-standard ... #snip
    ./node_modules/.bin/eslint ... #snip
  • Test runner integrations: eslint-engine can integrate with tape, ava, and mocha to provide you with fast linting as part of your test suite.

Config

eslint.ignore — You can add ignores via package.json.

/* package.json */
{
  "eslint": {
    "ignore": "lib/xyz"
  }
}

eslint.include — You can add additional files as well.

/* package.json */
{
  "eslint": {
    "include": "bin/*"
  }
}

Alternative usage

via Tape/Ava

Add this test file to your tape or ava suite:

test('eslint', require('eslint-engine/tape')())

via Mocha

Add this test file to your mocha suite:

describe('eslint', require('eslint-engine/mocha')())

via API

Access the programmatic API this way:

var eslint = require('eslint-engine')

eslint(options, (err, res) => {
  res.errorCount
  res.results.forEach(item => {
    item.filePath
    item.messages.forEach(msg => {
      msg.line
      msg.column
      msg.message
      msg.ruleId
    })
  })
})

Thanks

eslint-engine © 2016+, Rico Sta. Cruz. Released under the MIT License. Authored and maintained by Rico Sta. Cruz with help from contributors (list).

ricostacruz.com  ·  GitHub @rstacruz  ·  Twitter @rstacruz