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

@deterministic-code/deterministic

v0.0.6

Published

TypeScript base classes used to generate REST and GraphQL APIs.

Readme

deterministic

Tests

Description

A Claude Code skill that drives the deterministic codegen REST API (https://deterministic-code.com) from your terminal. Generates backend scaffolding (types, services, routes, migrations, OpenAPI docs) per language and per step, then unzips the result into your working tree.

Languages live on the API today: typescript, rust, and csharp (migrate scripts only — full parity in progress).

Quick start

Claude Code

Install the skill into ~/.claude/skills/ and put a generate binary on your $PATH:

curl -sSL https://deterministic-code.com/install-skills.sh | sh -s -- --bin deterministic

Cursor

Run from the project root you want the skill active in. The installer drops the skill payload (scripts + assets) into ~/.cursor/skills/deterministic/, symlinks generate into ~/.local/bin/, and writes a Cursor rule at <CWD>/.cursor/rules/deterministic.mdc so Cursor the IDE actually reads the skill instructions:

curl -sSL https://deterministic-code.com/install-skills-cursor.sh | sh -s -- --bin deterministic

Pass --no-mdc to skip the rule install (CLI-only). Override the rule target with CURSOR_RULES_DIR=~/.cursor/rules curl ... for a user-level install (modern Cursor versions). Remember to commit .cursor/rules/deterministic.mdc or add it to .gitignore.

Windows

Pick the shell you're using — each is a single command, no extra setup:

PowerShell (Windows 10 1803+ / 11) — Claude Code:

iwr -useb https://deterministic-code.com/install-skills.ps1 | iex

Installs into %USERPROFILE%\.claude\skills\, drops %USERPROFILE%\.local\bin\generate.cmd, and adds that bin dir to your User PATH. Open a new PowerShell window to pick up the PATH change. Requires node on PATH.

PowerShell — Cursor:

iwr -useb https://deterministic-code.com/install-skills-cursor.ps1 | iex

Run from the project root. Drops skill payload into %USERPROFILE%\.cursor\skills\, writes <CWD>\.cursor\rules\deterministic.mdc for Cursor the IDE, and adds %USERPROFILE%\.local\bin to your User PATH. Set $env:CURSOR_INSTALL_MDC = "0" BEFORE the iex to skip the rule install.

Git Bash (ships with Git for Windows) and WSL:

curl -sSL https://deterministic-code.com/install-skills.sh | sh -s -- --bin deterministic

Same one-liner as macOS/Linux. Symlinks ~/.local/bin/generate (which resolves to %USERPROFILE%\.local\bin\generate for Git Bash). Make sure that dir is on your PATH. Swap to install-skills-cursor.sh for the Cursor target.

First-time project setup

From the root of any new project, bootstrap the YAML folder + config in one shot:

generate setup

That writes deterministic.config.json and scaffolds deterministic/{datasource_types,view_types,services,routes,app}.yaml. Then edit deterministic/datasource_types.yaml to declare your tables and run generate against your saved backend.

Options forward to the underlying scripts: --api-url <prod|local|url>, --backend <id-or-name>, --languages <csv>, --datasources <csv>, --force (overwrite existing YAML).

List every <language> <step> combo the live API supports:

generate list

Run a specific codegen cell against one of your saved backends:

generate <language> <step> --backend <id-or-name>

Examples:

generate typescript migrate_scripts --backend my-app
generate rust routes --backend my-app
generate csharp migrate_scripts --backend my-app
generate _ validate                    # shared step, no language

No aliases — use canonical language names (typescript, rust, csharp) and step names (app, sql, openapi_docs, migrate_scripts, datasource_types, …). Run generate list for the full set.

generate help