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

@vortiquo/eslint-config

v2.1.0

Published

Modern ESLint v9 flat configurations with TypeScript, React, Next.js, and Node.js support

Readme

@vortiquo/eslint-config

npm version license

Modern ESLint v9 flat configurations with TypeScript, React, and Node.js support.

Features

  • ESLint v9 - Modern flat config format
  • 🔒 Strict TypeScript - Uses strictTypeChecked preset
  • 📦 Ready-to-use presets - Next.js, React, Node.js, NestJS
  • 🎨 Prettier compatible - No formatting conflicts
  • 📝 Import sorting - Auto-fixable with simple-import-sort
  • 🏎️ Turbo support - Monorepo cache awareness

Installation

npm install -D @vortiquo/eslint-config eslint typescript
# or
pnpm add -D @vortiquo/eslint-config eslint typescript
# or
yarn add -D @vortiquo/eslint-config eslint typescript

Available Configs

| Config | Use Case | | ------------------ | ----------------------------------------- | | nextjs | Next.js applications | | server | Backend APIs (Fastify, Express, Hono) | | nestjs | NestJS applications | | react | React applications | | react-library | React/UI component libraries (TypeScript) | | react-library-js | React/UI component libraries (JavaScript) | | node-library | Shared Node.js packages (TypeScript) | | node-library-js | Shared Node.js packages (JavaScript) |

Usage

Create an eslint.config.js in your project:

Next.js

import { nextjs } from '@vortiquo/eslint-config/nextjs';

export default [
  ...nextjs,
  {
    languageOptions: {
      parserOptions: {
        project: './tsconfig.json',
      },
    },
  },
];

Backend API (Fastify/Express/Hono)

import { server } from '@vortiquo/eslint-config/server';

export default [
  ...server,
  {
    languageOptions: {
      parserOptions: {
        project: './tsconfig.json',
      },
    },
  },
];

NestJS

import { nestjs } from '@vortiquo/eslint-config/nestjs';

export default [
  ...nestjs,
  {
    languageOptions: {
      parserOptions: {
        project: './tsconfig.json',
      },
    },
  },
];

React Component Library

import { reactLibrary } from '@vortiquo/eslint-config/react-library';

export default [
  ...reactLibrary,
  {
    languageOptions: {
      parserOptions: {
        project: './tsconfig.json',
      },
    },
  },
];

Node.js Library

import { nodeLibrary } from '@vortiquo/eslint-config/node-library';

export default [
  ...nodeLibrary,
  {
    languageOptions: {
      parserOptions: {
        project: './tsconfig.json',
      },
    },
  },
];

JavaScript Projects (No TypeScript)

For projects without TypeScript, use the -js variants:

// Node.js library (JavaScript)
import { nodeLibraryJs } from '@vortiquo/eslint-config/node-library-js';

export default [...nodeLibraryJs];
// React library (JavaScript)
import { reactLibraryJs } from '@vortiquo/eslint-config/react-library-js';

export default [...reactLibraryJs];

Extending Configs

All configs are arrays that can be spread and extended:

import { nextjs } from '@vortiquo/eslint-config/nextjs';

export default [
  ...nextjs,
  {
    rules: {
      'no-console': 'off',
    },
  },
  {
    ignores: ['generated/**'],
  },
];

What's Included

Base Rules

  • Prettier integration (formatting handled by Prettier)
  • Turbo plugin (monorepo cache awareness)
  • Import sorting (auto-fixable)
  • Best practices (curly, eqeqeq, prefer-const)

TypeScript Rules

  • Strict type checking (strictTypeChecked)
  • Consistent type imports/exports
  • No explicit any
  • Promise handling (no-floating-promises)

React Rules

  • React recommended + JSX runtime
  • React Hooks rules
  • Self-closing components
  • Prop sorting

Next.js Rules

  • Core Web Vitals
  • Image optimization
  • App Router support

Config Hierarchy

base (JS rules, Prettier, Turbo)
├── node-library-js (JS Node.js packages)
├── react-library-js (JS React libraries)
└── base-typescript (TS strict rules)
    ├── react (React + Hooks)
    │   ├── react-library (stricter)
    │   └── nextjs (Next.js specific)
    ├── server (Node.js APIs)
    │   └── nestjs (decorators)
    └── node-library (Node.js packages)

License

MIT © Vortiquo