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

@skiesjs/eslint-plugin-node

v0.1.1

Published

The removable SKYN doctor for Skies Node.js backend slices.

Downloads

0

Readme

@skiesjs/eslint-plugin-node

The removable Skies doctor for plain TypeScript backend slices. Rules inspect the current syntax tree and normalized local filename only; the plugin performs no synchronous filesystem reads and does not join workspace facts.

import tsParser from "@typescript-eslint/parser";
import skiesNode from "@skiesjs/eslint-plugin-node";

export default [
  {
    ...skiesNode.configs["flat/recommended"],
    files: ["**/*.ts"],
    languageOptions: { parser: tsParser },
  },
];

Public diagnostics

| Public ID / rule | Recommended | Diagnostic contract | |---|---:|---| | SKYN0001 / slice-shape | yes | Reports a missing, reordered, or incorrectly typed Input, Output, handle, or map spine. | | SKYN0002 / thin-map | yes | Reports legacy raw route handlers that omit endpoint(...); retained while slices migrate to mapSlice. | | SKYN0003 / require-slice-test | no | Optional inventory smoke reports a missing exact sibling *.slice.test.ts; the workspace doctor is authoritative. | | SKYN0006 / no-repository | yes | Reports application type declarations, import aliases, and constructors named *Repository or *UnitOfWork. | | SKYN0007 / file-size | yes | Reports files above 500 nonblank, non-comment effective lines; { max } can lower the ceiling. | | SKYN0011 / tests-under-source | yes | Reports *.test.ts, *.spec.ts, *.proof.ts, and *.avp.ts files outside an exact src path segment. | | SKYN0018 / error-code-registry | yes | Reports stable code literals outside *.errors.ts/defineErrorCodes and non-member Errors-factory codes. | | SKYN0022 / explicit-slice-contract | yes | Reports missing defineContract/mapSlice, raw router/endpoint mapping, and omitted or nonliteral auth/kind. |

Every rule message begins with its public SKYN#### ID. The default export and named ruleIds export expose the stable rule-name-to-ID map for integrations.

SKYN0003 is deliberately absent from flat/recommended: ESLint cannot authoritatively prove a sibling exists from one syntax tree. The asynchronous workspace doctor owns that join. For a bounded smoke, enable the rule and supply an already-built normalized inventory; the plugin itself never reads the filesystem:

{
  settings: { "skies-node": { testFiles: ["/app/src/health.slice.test.ts"] } },
  rules: { "skies-node/require-slice-test": "error" },
}

The same inventory can be passed as the rule option { testFiles: [...] }. Remove the plugin and the application still compiles and runs; only enforcement disappears. Orphan error codes, ownership, registration, and other cross-file relationships remain workspace-doctor concerns rather than ESLint rules.