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

create-skein-js

v0.16.0

Published

Scaffold a skein-js project — the open-source LangGraph Platform alternative for TypeScript. Self-host your LangGraph.js agents in one command.

Readme

create-skein-js

Scaffold a skein-js project — a self-hosted Agent Protocol server for your LangGraph.js agents.

npm create skein-js@latest my-agent
# or: pnpm create skein-js my-agent · yarn create skein-js my-agent · npx create-skein-js my-agent
cd my-agent
npm run dev     →  http://localhost:2024           the Agent Protocol API
                →  http://localhost:2024/console   threads, live runs, time travel

No database, no Docker, and no API key — echo answers your first request immediately. With --provider you also get a model-backed graph, and setting its key is listed as a step.

Keep the @latest. Without it, npm's npx cache (and pnpm dlx's 24-hour one) can serve a stale version of this package.

What you get

A langgraph.json project driven by the skein CLI — the same lifecycle you ship with:

| Command | What it does | | -------------- | ------------------------------------------------------------------ | | dev | In-memory drivers, hot reload, dev state persisted across restarts | | dev:services | Postgres + Redis via Docker Compose, which start needs | | build | Bundle the graphs to plain JavaScript in .skein/build | | start | Serve that bundle — the production entrypoint |

...plus an echo graph that runs with no credentials, a test for it, an optional model-backed ReAct agent, and a README explaining every file.

Options

create-skein-js [directory]

  -m, --provider <name>   none | google | anthropic | openai   (default: prompted)
      --pm <name>         npm | pnpm | yarn | bun              (default: detected)
      --no-install        Skip installing dependencies
      --no-git            Skip initializing a git repository
  -y, --yes               Accept every default; never prompt
  -f, --force             Scaffold into a directory that is not empty

Everything is prompted when the terminal is interactive, and defaulted when it is not — so this is safe to run in a Dockerfile or a CI job without hanging.

npm needs -- before flags; pnpm create and npx do not:

npm create skein-js@latest my-agent -- --provider anthropic
pnpm create skein-js my-agent --provider anthropic

With a provider you get a second graph — a ReAct agent with a live weather tool. Setting its API key is a step before dev: until it is set that graph fails to load, naming the variable it wants, while the keyless echo graph keeps serving.

Monorepos

Scaffold into the directory you want and it works anywhere:

npm create skein-js@latest apps/my-agent

In an Nx workspace, add a project.json next to it to get nx dev my-agent — see the scaffolding reference for the file to drop in.

Docs

License

Apache-2.0