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

@lowdep/yaml-lint

v1.0.0

Published

YAML structural validator with friendly error messages and GitHub Actions integration — zero dependencies

Readme

yaml-lint

Zero dependencies Node License: MIT Platform

YAML structural validator with friendly error messages. Catches the mistakes people actually make: tabs in indentation, missing space after colons, unbalanced quotes/brackets, duplicate keys, trailing whitespace. Zero dependencies.

Unlike yamllint (Python), this works wherever Node.js does. Unlike full YAML parsers, this is fast and needs no install.


Install

npm install -g yaml-lint

Or without installing:

npx yaml-lint

Usage

yaml-lint                          # Lint all .yaml/.yml in current dir
yaml-lint config.yaml              # Lint a single file
yaml-lint .github/workflows/       # Lint a directory
yaml-lint --format github          # GitHub Actions annotations
yaml-lint --strict                 # Exit 1 on warnings too

Example Output

yaml-lint  3 file(s) scanned

  ✗ config/app.yaml
      4:5    error    Tab character in indentation (use spaces)  (indentation)
      8:12   error    Missing space after ':' in mapping  (colon-space)
      15:1   error    Duplicate key 'name' at this indentation  (duplicate-key)
      22:1   warning  Trailing whitespace  (trailing-whitespace)

  ! .github/workflows/ci.yml
      3:1    warning  Missing '---' at start of document  (document-start)

  1 clean · 3 errors · 2 warnings

Rules

| Rule | Severity | Description | |---|---|---| | indentation | error | Tab character in indentation | | colon-space | error | Missing space after : in mapping | | duplicate-key | error | Same key appears twice at the same level | | flow-brackets | error | Unbalanced [] or {} | | unbalanced-quotes | error | Unbalanced quote characters | | line-length | warning | Line exceeds 120 chars | | trailing-whitespace | warning | Trailing spaces/tabs | | final-newline | warning | Missing newline at end of file | | document-start | warning | Missing --- (only with --doc-start) |


CI Integration

GitHub Actions:

- name: Lint YAML
  run: npx yaml-lint --format github --strict

Exit code is 1 if any errors are found (or warnings, with --strict).


Options

| Flag | Default | Description | |---|---|---| | --max-line-length <N> | 120 | Warn for lines longer than N | | --doc-start | off | Require --- at start | | --allow-tabs | off | Allow tab characters | | --no-final-newline | off | Don't require trailing newline | | --format <fmt> | human | human, json, github | | --strict | off | Exit 1 on warnings too | | --quiet | off | Only show files with issues |


License

MIT


Keywords

yaml linter · yaml validator · yamllint alternative · validate yaml · lint yaml · yaml ci · github actions yaml · check yaml · zero dependencies · cli


Built to solve, shared to help — Rushabh Shah 🛠️✨

One of 40+ zero-dependency developer CLI tools — no node_modules, ever.