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

@researchgate/esprint

v0.5.1

Published

Parallelized eslint

Downloads

3

Readme

esprint - a fast eslint runner Build Status npm version

esprint (pronounced E-S-sprint) speeds up eslint by running the linting engine across multiple threads. esprint sets up a server daemon to cache the lint status of each file in memory. It uses a watcher to determine when files change, to only lint files as necessary. It also has a CI mode where it does not set up a daemon and just lints in parallel.

Configuration

In order to use esprint, first place an .esprintrc file in the root directory your project. This is similar to a .flowconfig if you use flow types. The .esprintrc file describes which paths to lint and which paths to ignore. You can also override the port to start the background server on. A sample .esprintrc file:

{
  "paths": [
    "foo/*.js",
    "bar/**/*.js"
  ],
  "ignored": [
    "**/node_modules/**/*"
  ],
  "port": 5004
}

Options:

|Name|Type|Description| |:--:|:--:|:----------| |paths|{Array<String>}|Glob-style paths for files to include when linting| |ignored|{Array<String>}|Glob-style paths to ignore (not watch) during dev mode for better performance (.eslintignore applies as normal)| |port|{Number}|(optional) Run the esprint background server on a specific port| |formatter|{string}|(optional) Use a specific output format - default: stylish| |quiet|{boolean}|(optional) Report errors only - default: false| |maxWarnings|{number}|(optional) The max number of warnings that should trigger a failure. The default is to not fail on warnings|

Usage

Default mode

To run esprint, use the following command anywhere in your project:

$ esprint

esprint will find the root of your project automatically and lint the whole project. In default mode, esprint will start a background server to watch source files and cache lint results in memory.

By default, esprint will split up linting duties across all CPUs in your machine. You can manually override this via the cli with the following argument:

$ esprint --workers=[num_workers]

To kill the esprint server in the background, use the following command:

$ esprint stop

You can run esprint from any subdirectory that .esprintrc is located in, and it will still properly lint all files as specified.

CI Mode

In CI environments, it is not always appropriate (or necessary) to start a background server. In this case, you can use the following command, which simply lints in parallel without setting up a background server:

$ esprint check

Developing for esprint

Refer to CONTRIBUTING

Team

Arthur Lee (@compid)

Allen Kleiner (@AK34_)