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

plgg-parser

v0.0.1

Published

Zero-new-dep generic parser combinator library built purely on plgg primitives (Result/Option/Box/InvalidError); parsers are data-last functions Parser<A,S> = (ParseState<S>) => Result<Parsed<A,S>>, composed with pipe/flow. Threads a user-state slot for c

Downloads

197

Readme

plgg-parser

UNSTABLE - Experimental study work. Part of the plgg monorepo.

A generic parser combinator library with zero new dependencies, built from scratch on plgg. A parser is plain data — a data-last function, not a class or chaining builder:

Parser<A, S> = (state: ParseState<S>) => Result<Parsed<A, S>, InvalidError>

Combinators (map, andThen, seq, or, many, optional, between, sepBy, lazy, …) are standalone data-last functions composed with pipe/flow, mirroring plgg's cast/proc vocabulary. Failure is a Result carrying an InvalidError with position context (alternative branches aggregate as siblings); optionality is Option, never null; nothing throws.

Why this package exists

plgg-highlight highlights <pre>-wrapped TypeScript by driving the TypeScript compiler's stateful ts.createScanner, carrying typescript as a peer dependency. plgg-parser is the in-house, dependency-free parsing stack that replaces it: the combinator core here, the production TS grammar in plgg-highlight.

plgg ── plgg-parser ── (demo) TS lexer
              └── plgg-highlight (production TS grammar, next ticket)

The user-state slot

Lexing TypeScript is context-sensitive: / is a regex literal in operator position but division after a value. ParseState<S> carries a user-state slot S threaded through the whole parse, so a grammar can remember the last significant token and disambiguate. Read it with getUserState, update it with setUserState.

How it's organized

  • Parse/modelParseState<S>, Parsed<A, S>, the Parser<A, S> function type, and the parseError helper on InvalidError.
  • Parse/usecase — primitives (satisfy, literal, anyChar, eof, character classes) and combinators (map, andThen, seq, or, many/many1, optional, between, sepBy/sepBy1, lookahead, notFollowedBy, lazy, run).
  • Demo — a TS-lexer grammar (spec/demo code) proving the core can lex TypeScript into classified tokens, with the exact-source round-trip invariant and the three hard edge cases (nested template interpolation, regex-vs-division, unterminated-at-EOF degrading to plain).

Conventions

  • as / any / ts-ignore are prohibited (see root CLAUDE.md).
  • The only runtime dependency is plgg; typescript is a dev-dependency for type-checking only — no peer dependency, so the library adds nothing to a consumer's install.
  • many/seq iterate internally (a documented imperative seam) so a long <pre> block never recurses per token.
  • After editing a file:-linked dependency's source, rebuild its dist or this package won't see new exports.