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

oxlint-tui

v1.1.2

Published

A Node TUI Oxlint rules and configuration browser

Downloads

1,714

Readme

oxlint-tui

A lightweight, dependency-free Node.js Terminal User Interface (TUI) for browsing, toggling and visualizing oxlint rules and the number of warnings/errors they produce when toggled ON.

It automatically loads your local configuration to show you the status of the rules toggled in your project and allows you to toggle them by selecting a rule in the Rules pane and pressing 1, 2, or 3. The config file is modified in real-time.

NOTE: At the moment, comments will be erased from your configuration file when adding or toggling rules.

screenshot

Why?

Configuring linters often involves jumping between your editor, a massive JSON file, and web documentation. oxlint-tui tries to make the process easier by giving you an interactive dashboard right in your terminal.

Features

  • Config Aware: provides information about the rules used in your project by loading .oxlintrc.json.
  • Details: View category, scope, fix, default and type-aware rule parameters at a glance.
  • View Docs: Press ENTER on any rule to open its official documentation in your browser.
  • Zero Dependencies: Written in pure Node.js without any heavy TUI libraries.

Usage

Quick Start (via npx)

Run it directly in your project folder (where your .oxlintrc.json is located):

npx oxlint-tui

Custom Config Path

If your configuration file is located elsewhere or named differently:

npx oxlint-tui ./configs/oxlint.json

Global Install

If you use oxlint frequently, you can install it globally:

npm install -g oxlint-tui

oxlint-tui

Keyboard Controls

| Key | Action | | :-------------- | :-------------------------------------- | --- | | / k | Move selection Up | | / j | Move selection Down | | / h | Move focus Left (Categories <-> Rules) | | / l | Move focus Right (Categories <-> Rules) | | | 1 | Set selected rule to "off" | | 2 | Set selected rule to "warn" | | 3 | Set selected rule to "error" | | x | Run "oxlint" with the selected rule | | r | Run "oxlint with all enabled rules | | Enter | Open Rule Documentation in Browser | | q / Esc | Quit |

Requirements

  • Node.js >= 16
  • oxlint (The tool runs npx oxlint --rules --format=json internally to fetch definitions)

Roadmap

The goal is to build this into a tool that not only reads the information provided by the oxlint CLI and your configuration file - but also allows to fully customize the configuration. Oxlint provides a lot more flexibility than just toggling rules on/off, so making this fully functional is going to require more work.

If you're willing and able, please feel free to contribute to this project.

License

MIT