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-justscale

v0.1.1

Published

Create a new JustScale project

Downloads

249

Readme

create-justscale

Project scaffolder for pnpm create justscale / npm create justscale@latest / yarn create justscale. Interactive prompt, detects your environment (OS, package manager, installed IDEs, AI tools, git hosting), then writes a minimal JustScale app with matching IDE + CI config.

Not a package you import — it's a CLI. Run it to bootstrap a new project.

Usage

pnpm create justscale
# or
npm create justscale@latest
# or
yarn create justscale

You can also invoke it directly:

pnpm dlx create-justscale

The CLI asks for a project name (default: current directory name). If the name matches the current directory, it scaffolds in place; otherwise it creates a subdirectory. It refuses to run in a directory that already has a package.json — use just init for that case.

What gets generated

Always:

  • package.json with @justscale/core and @justscale/typescript pinned
  • tsconfig.json (NodeNext, ES2022, strict)
  • justscale.config.ts with defineProject and serve / cli mode entries
  • src/app.ts, src/serve.ts, src/cli.ts stubs
  • .gitignore

Based on detected environment:

  • JetBrains IDE (WebStorm / IntelliJ): .idea/typescript.xml pointing at @justscale/typescript's tsserver, plus just dev / just build / just test run configurations.
  • VS Code / Cursor: .vscode/settings.json with typescript.tsdk pointed at the workspace JustScale TypeScript, plus a launch.json for just dev.
  • Claude CLI on PATH: .claude/settings.json wiring the JustScale MCP server (just mcp serve) and a starter CLAUDE.md.
  • GitHub remote: .github/workflows/ci.yml matching the detected package manager.
  • GitLab remote: .gitlab-ci.yml equivalent.

After scaffolding, the CLI runs <pm> install, initialises git, and optionally opens your detected editor / Claude session.

Detection

Detection is best-effort and purely read-only:

  • OS / arch from process.platform
  • Package manager via which pnpm / yarn (falls back to npm)
  • IDEs by scanning app locations on macOS/Linux plus code / cursor on PATH
  • AI tools by claude / cursor on PATH
  • Git hosting from .git/config (github.com, gitlab.com)

No network calls, no telemetry.

Starter app shape

The generated app.ts is intentionally empty — a JustScale() builder with comments showing where to .add(...) services / features:

import JustScale from '@justscale/core'

export const app = JustScale()
  // Add services, features, and adapters here
  // .add(PostgresClient)
  // .add(AuthFeature)

serve.ts and cli.ts each .build() it for their respective modes; justscale.config.ts wires the modes together. From there you follow the docs to add controllers, features, and an adapter.

Next steps

cd your-project-name
just dev                 # boots the app
just install <plugin>    # installs and wires a JustScale plugin

Docs

https://justscale.sh/docs/overview/quick-start