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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@node-core/remark-lint

v1.2.0

Published

A [`remark-lint`](https://github.com/remarkjs/remark-lint) plugin with configurations tailored to the documentation and contribution standards of the [Node.js GitHub Organization](https://github.com/nodejs).

Readme

@node-core/remark-lint

A remark-lint plugin with configurations tailored to the documentation and contribution standards of the Node.js GitHub Organization.

Installation

npm install --save-dev @node-core/remark-lint

Usage

Add the plugin to your .remarkrc or remark.config.js:

{
  "plugins": ["@node-core/remark-lint"]
}

Run remark to lint your Markdown files:

npx remark . --frail

Configuration

Released Versions

Some rules, such as node-core:yaml-comments, validate version references against known released Node.js versions. You can provide these using the releasedVersions option:

{
  "plugins": [
    [
      "@node-core/remark-lint",
      {
        "releasedVersions": ["v18.0.0", "v18.1.0", "v18.2.0", "v20.0.0"]
      }
    ]
  ]
}

For Node.js projects, these versions can be automatically generated using list-released-versions-from-changelogs.mjs.

If not specified, version-related rules will accept any valid SemVer format.

Rules

node-core:duplicate-stability-nodes

Prevents redundant stability markers in nested sections.

Not allowed:

# Parent Section

> Stability: 2 - Stable

## Child Section

> Stability: 2 - Stable <!-- Redundant! -->

node-core:invalid-type-reference

Ensures that all {type} references are valid types and formatted correctly.

Allowed:

This is usually a {boolean}, but it could also be a {string|number}.

Not allowed:

This is an {invalid} type, and so is {string | number} because there should **not** be whitespace around the `|`.

node-core:hashed-self-reference

Ensures self-references use fragment-only links.

Allowed:

See the [Introduction](#introduction) section.

Not allowed:

See the [Introduction](document.md#introduction) section.

node-core:ordered-references

Enforces alphabetical sorting of reference-style link definitions.

Allowed:

[api]: https://example.com/api
[docs]: https://example.com/docs
[info]: https://example.com/info

node-core:required-metadata

Requires essential metadata for documentation:

  • llm_description: A description for Large Language Models (can be inferred from first paragraph)
  • introduced_in: API introduction version

Metadata can be provided in comments:

<!-- llm_description= Utilities for working with file paths -->

node-core:yaml-comments

Enforces structure and content of YAML comment blocks:

  • added: An array of valid version strings
  • napiVersion: The N-API version
  • deprecated: An array of valid version strings
  • removed: An array of valid version strings
  • changes: An array of:
    • pr-url: Pull request URL
    • commit: Commit hash (only required for security fixes)
    • version: Valid version string
    • description: Change description

All version references must be valid SemVer, or match the provided releasedVersions.