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

v0.4.25

Published

Create Runtime Accelerated Rendering Infrastructure (rari) applications with no build configuration

Downloads

1,756

Readme

create-rari-app

Scaffold a new rari application with zero configuration

The fastest way to get started with rari, a high-performance React Server Components framework powered by Rust.

Usage

Create a new rari application interactively:

npm create rari-app@latest

Or specify a project name directly:

npm create rari-app@latest my-app

With other package managers:

# pnpm
pnpm create rari-app

# yarn
yarn create rari-app

# bun
bun create rari-app

What You Get

Running create-rari-app sets up a complete rari project with:

  • App Router structure - Pre-configured file-based routing
  • TypeScript support - Full type safety out of the box
  • Development server - Hot module reloading for instant feedback
  • Example components - Server and client component examples
  • Production ready - Optimized build configuration included

Project Structure

my-app/
├── app/
│   ├── layout.tsx          # Root layout
│   ├── page.tsx            # Home page
│   └── global.css          # Global styles
├── public/                 # Static assets
├── package.json
├── tsconfig.json
└── vite.config.ts

Getting Started

After creating your project:

cd my-app
npm install
npm run dev

Your app will be running at http://localhost:5173.

Available Commands

  • npm run dev - Start development server with hot reloading
  • npm run build - Build for production
  • npm run start - Start production server
  • npm run typecheck - Run TypeScript type checking

Templates

create-rari-app includes a default template with:

  • React 19 with Server Components
  • TypeScript configuration
  • Vite integration
  • Example pages and components
  • CSS support

Documentation

Visit rari.build/docs for:

  • Complete documentation
  • Guides and tutorials
  • API reference
  • Deployment guides
  • Performance tips

Community

Troubleshooting

Installation Issues

If you encounter issues during installation:

  1. Ensure you're using Node.js 22 or higher: node --version
  2. Clear npm cache: npm cache clean --force
  3. Try with a different package manager (pnpm, yarn, or bun)

Platform-Specific Binaries

rari automatically downloads the correct binary for your platform. Supported platforms:

  • macOS (Intel and Apple Silicon)
  • Linux (x64 and ARM64)
  • Windows (x64)

If the binary download fails, check your internet connection and firewall settings.

Contributing

We welcome contributions! See our Contributing Guide for details.

License

MIT License - see LICENSE for details.