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 🙏

© 2026 – Pkg Stats / Ryan Hefner

eslint-config-delaweb

v2.0.0

Published

ESLint settings for react projects

Readme

ESLint configuration for react projects, using Typescript.

Motivation

A single config for all React projects using TypeScript, which can be quickly connected to the project, in place of local configuration files in each project, which causes a discrepancy in styling or syntax checking on projects.

Description

This configuration uses configurations from airbnb for React hooks and TypeScript.

Plugins are also used:

  1. eslint-plugin-sonarjs - to identify duplicated code that should be avoided;
  2. eslint-plugin-import - to support the ES2015 + (ES6+) import / export syntax and prevent problems with incorrect spelling of file paths and import names.
  3. eslint-plugin-promise - plugin that will help you write the right promises and protect you from typical errors when working with them.
  4. eslint-plugin-jsx-a11y - will make you write HTML that will meet accessibility standards much better. Your projects will become much more convenient for people with disabilities.
  5. eslint-plugin-prettier - plugin that connects prettier, a code formatting tool that aims to use hard-coded rules for the design of programs.

Install

  1. First, we install the package and its dependencies
yarn add eslint-config-delaweb@^2.0.0 --dev
yarn add @typescript-eslint/eslint-plugin@^4.29.3 --dev
yarn add @typescript-eslint/parser@^4.29.3 --dev
yarn add eslint@^7.32.0" --dev
  1. Adding the configuration to the extends of your configuration file
module.exports = {
    extends: ['delaweb']
}
  1. If you have the path function configured in tsconfig, you must specify the path to the configuration file in which the function was described
module.exports = {
    extends: ['delaweb'],
    parserOptions: {
        project: './tsconfig.paths.json',
    }
}

Maintainers