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-story-app

v0.0.1

Published

Scaffold a Story dApp in seconds, pre-configured with wallet connectivity, on-chain IP data hooks, and a complete design system.

Downloads

14

Readme

create-story-app

Scaffold a production-ready Story dApp in seconds. Comes pre-configured with wallet connectivity, on-chain IP data hooks, and a complete design system.

Quick Start

npx create-story-app my-app

You'll be prompted to choose a framework. Or pass it directly:

npx create-story-app my-app --template next
npx create-story-app my-app --template vite

Then start the dev server:

cd my-app
npm run dev

Templates

| Template | Framework | Description | | -------- | -------------------- | ------------------------------------- | | next | Next.js (App Router) | Server components, file-based routing | | vite | Vite + React | Fast HMR, client-side SPA |

Both templates include the same Story Protocol integrations and design system.

What's Included

  • Story Protocol Core SDK — Register IP, manage licenses, royalties, and disputes
  • Story Global Wallet — Cross-app account abstraction wallet (auto-appears in wallet selector)
  • IPKit — React hooks for reading on-chain IP asset data
  • RainbowKit + wagmi — Wallet connection UI with Story chain pre-configured
  • Tailwind CSS v4 + shadcn/ui — Component library with a custom design system
  • TypeScript — Strict mode, path aliases (@/*)

Options

| Flag | Description | | ------------------------ | -------------------------------------- | | --template <next|vite> | Skip the framework prompt | | --skip-install | Skip automatic dependency installation |

Environment Variables

All environment variables are optional — default API keys are included so the app works out of the box. To use your own keys, copy .env.example to .env.local:

| Variable | Description | | -------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------ | | NEXT_PUBLIC_WALLET_CONNECT_PROJECT_ID / VITE_WALLET_CONNECT_PROJECT_ID | WalletConnect project ID from WalletConnect Cloud | | NEXT_PUBLIC_STORY_API_KEY / VITE_STORY_API_KEY | Story Protocol API key for IPKit. Overrides the default public StoryKit API keys. |

Note: Next.js uses the NEXT_PUBLIC_ prefix for client-side env vars. Vite uses the VITE_ prefix.

Story Global Wallet

The Story Global Wallet with gas sponsorship (ZeroDev account abstraction) is only supported on mainnet.

Learn More

License

MIT