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

@allstak/wizard

v0.1.19

Published

AllStak SDK installation and configuration wizard. Lists public Stable runtimes, fully/assisted-wires JS, React, and Next.js, and keeps manual-light server SDK setup honest.

Readme

@allstak/wizard

npm version License: Apache-2.0 TypeScript

One command to install and configure AllStak in any project.

npx @allstak/wizard -i react

Features

  • Auto-detection -- detects your framework and wires the right SDK automatically
  • Safe mutations -- every file change is snapshotted and fully reversible
  • Doctor -- diagnoses connectivity, config, and integration health in seconds
  • Dry-run mode -- preview every change before writing a single file
  • CI-friendly -- supports API key auth and --json output for automation
  • Self-hosted ready -- configurable API, ingest, and dashboard endpoints

Quickstart

# 1. Authenticate
npx @allstak/wizard login

# 2. Install an SDK into your project
npx @allstak/wizard -i react

# 3. Verify the setup
npx @allstak/wizard doctor

The wizard installs the SDK, patches your entry files, and configures source maps. Run doctor at any time to validate the integration.

Supported Integrations

| Integration | Runtime | Wizard | |---|---|---| | js (JavaScript / TypeScript) | Stable | Stable | | react (Vite or CRA) | Stable | Stable | | react-native (Expo + bare RN) | Stable | Setup guide | | next (13+, App + Pages router) | Beta | Beta | | java (Spring Boot) | Beta | Setup guide | | python | Beta | Setup guide | | go | Beta | Setup guide |

Run npx @allstak/wizard list to see all available integrations.

Commands

| Command | Description | |---|---| | login | Authenticate via email OTP (with optional TOTP) | | init -i <integration> | Install and configure an SDK | | doctor | Run diagnostic checks on your setup | | repair -i <integration> | Fix a broken integration in place | | uninstall -i <integration> | Cleanly remove an SDK | | restore list / apply / diff | Browse and restore file snapshots | | config validate | Check your project config file | | whoami | Show the current authenticated user |

All commands support --dry-run, --json, and --debug. See npx @allstak/wizard --help for the full reference.

Configuration

Create an optional allstak.config.ts (or .mjs, .js, .cjs, .json) to avoid repeating flags:

import { defineConfig } from '@allstak/wizard/config';

export default defineConfig({
  schemaVersion: 1,
  organization: 'my-org',
  project: 'my-project',
  environment: 'production',
  release: process.env.GIT_SHA,
  sourceMaps: { enabled: true, ignore: ['node_modules'] },
});

Precedence: CLI flag > environment variable > config file > built-in default.

Full reference: docs/config.md

Doctor

Doctor runs a fixed sequence of checks -- auth, reachability, config, integration, event ingest, release linkage, and source maps -- and reports pass, warn, fail, or skip with an actionable fix for each.

# Offline checks only
npx @allstak/wizard doctor

# Full live verification (sends a test event and confirms ingestion)
npx @allstak/wizard doctor --live-probe \
  --api-key ask_live_... --project-id <uuid>

Full reference: docs/doctor.md

Privacy

The wizard collects minimal anonymous usage telemetry (version, command, OS family, outcome). It never collects API keys, file paths, source code, or personally identifiable information.

Opt out with any of:

npx @allstak/wizard --no-telemetry ...
ALLSTAK_WIZARD_TELEMETRY=0 npx @allstak/wizard ...

Full policy: docs/privacy.md

Self-Hosted Deployments

Point the wizard at your own AllStak instance:

npx @allstak/wizard -i react \
  --host https://api.allstak.example \
  --ingest-host https://api.allstak.example \
  --dashboard-host https://app.allstak.example

Or set selfHosted in your config file. See docs/config.md for details.

Links

License

Apache-2.0 -- see LICENSE.