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

@devvmichael/create-stacks-app

v0.2.42

Published

Scaffold full-stack Stacks blockchain applications

Downloads

269

Readme

@devvmichael/create-stacks-app

The fastest way to build full-stack applications on Stacks blockchain.

npm version License: MIT

Quick Start

npx @devvmichael/create-stacks-app my-dapp
cd my-dapp
npm run dev

Features

  • 🚀 One-command project setup - Get started in seconds
  • 📝 Smart contract templates - Counter, Token (SIP-010), NFT (SIP-009)
  • ⚛️ Modern frontend frameworks - Next.js, React, or Vue
  • 🔗 Pre-configured Stacks.js - Wallet connect, contract calls ready to go
  • 🎨 Tailwind CSS styling - Beautiful UI out of the box
  • 🧪 Testing setup included - Clarinet SDK tests for contracts
  • 📦 Deployment scripts - One-command deploy to testnet/mainnet

Installation

# Using npx (recommended)
npx @devvmichael/create-stacks-app my-dapp

# Or install globally
npm install -g @devvmichael/create-stacks-app
create-stacks-app my-dapp

Usage

Interactive Mode

Simply run without arguments for interactive prompts:

npx @devvmichael/create-stacks-app

Command Line Options

npx @devvmichael/create-stacks-app my-dapp [options]

Options:
  -t, --template <name>      Frontend template: nextjs, react, vue
  -c, --contracts <list>     Contracts to include: counter,token,nft
  --typescript               Use TypeScript (default: true)
  --no-typescript            Use JavaScript
  --tailwind                 Include Tailwind CSS (default: true)
  --no-git                   Skip Git initialization
  --package-manager <pm>     Package manager: npm, pnpm, yarn
  --skip-install             Skip dependency installation
  -y, --yes                  Skip prompts, use defaults

Example Commands

# Create with all defaults
npx @devvmichael/create-stacks-app my-dapp -y

# Create with React and all contracts
npx @devvmichael/create-stacks-app my-dapp -t react -c counter,token,nft

# Create with npm instead of pnpm
npx @devvmichael/create-stacks-app my-dapp --package-manager npm

Adding to Existing Projects

Add a Contract

# Add a new contract
npx @devvmichael/create-stacks-app add contract my-contract

# Add a SIP-010 token contract
npx @devvmichael/create-stacks-app add contract my-token --sip010

# Add a SIP-009 NFT contract
npx @devvmichael/create-stacks-app add contract my-nft --sip009

Add a Component

npx @devvmichael/create-stacks-app add component my-component

Deployment

Deploy to Testnet

npm run deploy:testnet
# or
npx @devvmichael/create-stacks-app deploy testnet

Deploy to Mainnet

npm run deploy:mainnet
# or
npx @devvmichael/create-stacks-app deploy mainnet

Project Structure

Generated projects have the following structure:

my-dapp/
├── contracts/           # Clarity smart contracts
│   └── counter.clar
├── tests/               # Contract tests
│   └── counter.test.ts
├── frontend/            # Frontend application
│   ├── app/             # Next.js app directory
│   ├── components/      # React components
│   ├── hooks/           # Stacks.js hooks
│   └── lib/             # Utilities and config
├── deployments/         # Deployment configurations
├── scripts/             # Utility scripts
├── Clarinet.toml        # Clarinet configuration
└── package.json

Smart Contract Templates

Counter

Simple state management example demonstrating:

  • Data variables
  • Public functions
  • Read-only functions
  • Owner-only access control

Token (SIP-010)

Full SIP-010 compliant fungible token with:

  • Transfer, mint, and burn functionality
  • Token URI support
  • Owner administration

NFT (SIP-009)

Full SIP-009 compliant NFT with:

  • Mint and transfer
  • Token metadata
  • Built-in marketplace (list, buy, unlist)

Requirements

  • Node.js 18.0 or higher
  • pnpm (recommended) or npm/yarn
  • Clarinet - Install here

Contributing

Contributions are welcome! Please read our Contributing Guide first.

Community

Author

Michael Ojekunle - @michojekunle

License

MIT © Michael Ojekunle