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

@ox-jsdoc/eslint-plugin-jsdoc

v0.0.19

Published

eslint-plugin-jsdoc fork using @ox-jsdoc/jsdoccomment.

Readme

@ox-jsdoc/eslint-plugin-jsdoc

@ox-jsdoc/eslint-plugin-jsdoc is a fork of eslint-plugin-jsdoc adapted for ox-jsdoc.

This package reuses the rule implementations from eslint-plugin-jsdoc while exercising @ox-jsdoc/jsdoccomment as the JSDoc parser. It is published as part of the ox-jsdoc package family for ESLint / Oxlint integration experiments and benchmarks.

Role

  • Preserve the rule behavior of eslint-plugin-jsdoc as faithfully as possible.
  • Use @ox-jsdoc/jsdoccomment instead of @es-joy/jsdoccomment.
  • Allow switching between parseComment and parseCommentBatch from @ox-jsdoc/jsdoccomment within the same ESLint plugin so the two strategies can be compared head-to-head.
  • Measure, in ox-jsdoc benchmarks, both the performance impact of swapping the parser and the benefit of batch parsing.

Key differences from upstream eslint-plugin-jsdoc

| Item | Upstream eslint-plugin-jsdoc | This package | | -------------------- | ------------------------------ | ----------------------------------------------------- | | package name | eslint-plugin-jsdoc | @ox-jsdoc/eslint-plugin-jsdoc | | publish | npm package | npm package under the @ox-jsdoc scope | | JSDoc parser | @es-joy/jsdoccomment | @ox-jsdoc/jsdoccomment | | single comment parse | parseComment | parseComment via @ox-jsdoc/jsdoccomment | | batch parse | not available | enabled via settings.jsdoc.oxParseStrategy: 'batch' | | purpose | general-purpose ESLint plugin | fork for ox-jsdoc integration / benchmarking |

The rule names, configuration, and core rule behavior aim to remain compatible with upstream eslint-plugin-jsdoc. However, since this fork exists primarily for benchmarking and validation, compatibility follows the needs of the ox-jsdoc integration packages.

Installation

npm install @ox-jsdoc/eslint-plugin-jsdoc

oxParseStrategy

This fork lets you switch how JSDoc comments are parsed via settings.jsdoc.oxParseStrategy.

import jsdoc from '@ox-jsdoc/eslint-plugin-jsdoc'

export default [
  {
    plugins: {
      jsdoc
    },
    settings: {
      jsdoc: {
        oxParseStrategy: 'single'
      }
    },
    rules: {
      'jsdoc/empty-tags': 'error',
      'jsdoc/require-param-description': 'error',
      'jsdoc/require-param-type': 'error'
    }
  }
]

oxParseStrategy values:

| Value | Behavior | | -------- | --------------------------------------------------------------------------------------------------------------- | | single | Calls parseComment from @ox-jsdoc/jsdoccomment once per comment. Default. | | batch | Collects JSDoc comments from SourceCode#getAllComments() and parses them all at once via parseCommentBatch. |

batch caches the parse result per SourceCode, reusing the same parsed comments within a single lint run. This makes it easier to measure the benefit of batch parsing even when multiple rules are enabled at the same time.

Intended benchmark scenarios

This package is meant to support comparisons such as:

  • eslint + eslint-plugin-jsdoc (@es-joy/jsdoccomment)
  • eslint + @ox-jsdoc/eslint-plugin-jsdoc (oxParseStrategy: 'single')
  • eslint + @ox-jsdoc/eslint-plugin-jsdoc (oxParseStrategy: 'batch')
  • oxlint + @ox-jsdoc/eslint-plugin-jsdoc (oxParseStrategy: 'batch')

Credit

This package is based on eslint-plugin-jsdoc, created by Gajus Kuizinas and maintained by its contributors.

The original project provides the ESLint rule implementation, configuration structure, tests, and documentation that this fork is derived from.

@ox-jsdoc/eslint-plugin-jsdoc contains modifications for the ox-jsdoc project, including parser replacement with @ox-jsdoc/jsdoccomment and oxParseStrategy support.

License

This package is distributed under the BSD-3-Clause license, matching the upstream eslint-plugin-jsdoc license.

See LICENSE for the full license text.

Original code copyright:

  • Copyright (c) 2018, Gajus Kuizinas

Modifications in this repository are part of the ox-jsdoc project and are distributed under the same BSD-3-Clause license unless otherwise noted.