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

@celo/celo-composer

v2.4.13

Published

CLI tool for generating customizable Celo blockchain starter kits

Readme

Celo Composer

A powerful CLI tool for generating customizable Celo blockchain starter kits with modern monorepo architecture.

Features

  • 🚀 Modern Stack: Next.js 14+, TypeScript, Tailwind CSS, shadcn/ui
  • 📦 Monorepo Ready: Turborepo with PNPM workspaces
  • 🎨 Beautiful UI: Pre-configured shadcn/ui components
  • 🔧 Developer Experience: Interactive prompts and clear feedback
  • 🌍 Celo Optimized: Ready for Celo blockchain development
  • 🎯 Multiple Templates: Choose from Basic Web App, Farcaster Miniapp, Minipay, or AI Chat templates
  • 🔌 Flexible Integrations: Add wallet providers (RainbowKit, Thirdweb) and smart contract frameworks (Hardhat, Foundry)

Requirements

  • Node.js >= 18.0.0
  • PNPM (recommended) or npm/yarn

Quick Start

Create a new Celo project in seconds:

npx @celo/celo-composer@latest create

This will start an interactive setup process where you can choose your template, wallet provider, and smart contract framework.

Installation

No installation required! Use npx to run Celo Composer directly without installing anything globally.

Usage

Interactive Mode

Run the command without any flags to enter interactive mode:

npx @celo/celo-composer@latest create my-celo-app

The CLI will guide you through:

  • Project name and description
  • Template selection
  • Wallet provider choice
  • Smart contract framework selection
  • Dependency installation

Non-Interactive Mode

Create a project with specific configurations using flags:

npx @celo/celo-composer@latest create my-celo-app \
  --template basic \
  --wallet-provider rainbowkit \
  --contracts hardhat \
  --description "My awesome Celo app"

Quick Start with Defaults

Skip all prompts and use default settings. This will create a basic app with no additional setup. All available flags and options are listed in the Command Options table below.

npx @celo/celo-composer@latest create my-celo-app --yes

Available Templates

Basic Web App (default)

A standard Next.js 14+ web application with modern UI, perfect for most dApp projects.

npx @celo/celo-composer@latest create --template basic

Farcaster Miniapp

A specialized template for building Farcaster Miniapps with Farcaster SDK and Frame development support.

npx @celo/celo-composer@latest create --template farcaster-miniapp

Minipay App

Optimized for building dApps that integrate with the Minipay mobile wallet, with mobile-first design.

npx @celo/celo-composer@latest create --template minipay

AI Chat App

A standalone Next.js AI chat application template.

npx @celo/celo-composer@latest create --template ai-chat

Wallet Providers

Choose a wallet provider to handle user authentication and transaction signing:

  • RainbowKit (default): Popular, easy-to-use wallet connector for React apps
  • Thirdweb: Complete Web3 development framework with powerful wallet tools
  • None: Skip wallet integration if you want to integrate your own solution

All available flags can be found in the Command Options table below.

npx @celo/celo-composer@latest create --wallet-provider rainbowkit

Smart Contract Frameworks

Set up a smart contract development environment:

  • Hardhat (default): Popular Ethereum development environment
  • Foundry: Fast, portable and modular toolkit for Ethereum application development
  • None: Skip smart contract development setup

All available flags can be found in the Command Options table below.

npx @celo/celo-composer@latest create --contracts hardhat

Command Options

npx @celo/celo-composer@latest create [project-name] [options]

| Flag | Description | Default | | --------------------------------- | ------------------------------------------------------------------ | ------------------ | | -d, --description <description> | Project description | Interactive prompt | | -t, --template <type> | Template type (basic, farcaster-miniapp, minipay, ai-chat) | basic | | --wallet-provider <provider> | Wallet provider (rainbowkit, thirdweb, none) | rainbowkit | | -c, --contracts <framework> | Smart contract framework (hardhat, foundry, none) | hardhat | | --skip-install | Skip automatic dependency installation | false | | -y, --yes | Skip all prompts and use defaults | false |

Generated Project Structure

my-celo-app/
├── apps/
│   ├── web/                 # Next.js application
│   └── contracts/           # Smart contracts (if selected)
├── packages/
│   ├── ui/                  # Shared UI components
│   └── utils/               # Shared utilities
├── package.json             # Root package.json
├── pnpm-workspace.yaml      # PNPM workspace config
├── turbo.json              # Turborepo configuration
└── tsconfig.json           # TypeScript configuration

Next Steps

After creating your project, navigate to it and install dependencies (if you didn't use --skip-install):

cd my-celo-app
pnpm install  # If you used --skip-install
pnpm dev      # Start development server

Your project is automatically initialized with Git and includes an initial commit.

Tech Stack

Generated Projects Include:

  • Next.js 14+ with App Router
  • TypeScript
  • Tailwind CSS
  • shadcn/ui components
  • Turborepo for monorepo management
  • PNPM workspaces

License

MIT

Resources