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

vibe-init

v2.0.1

Published

Create a new project with good vibes ✨ - A modern full-stack monorepo template

Readme

vibe-init ✨

A CLI tool to create new projects with good vibes - a modern full-stack monorepo setup with React, TypeScript, and Turborepo.

Usage

Create a new project with the default template:

pnpm dlx vibe-init@latest

Or specify a template:

pnpm dlx vibe-init@latest --template simple-react

Alternative package managers:

# With npm
npx vibe-init@latest

# With yarn
yarn create vibe-init

Templates

List all available templates:

pnpm dlx vibe-init@latest --list

Available Templates

  • turbo-react-router (default) - Full-stack monorepo with React Router, TypeScript, and Turborepo
  • simple-react - Simple React app with Vite and TypeScript

CLI Options

  • -t, --template <name> - Template to use (default: turbo-react-router)
  • -l, --list - List available templates
  • -h, --help - Show help message

What's Included

turbo-react-router Template (Default)

This template creates a modern monorepo with:

Apps and Packages

  • web: A React application built with Vite and TypeScript
  • @your-project/ui: A shared component library
  • @your-project/eslint-config: Shared ESLint configurations
  • @your-project/typescript-config: TypeScript configurations

Technologies

Features

  • Monorepo structure with shared packages
  • TypeScript throughout the entire codebase
  • Hot reloading in development
  • Optimized builds with Turborepo
  • Code quality with ESLint and Prettier
  • Workspace dependencies with pnpm

simple-react Template

This template creates a simple React application with:

  • React 18 with TypeScript
  • Vite for fast development and building
  • ESLint for code linting
  • Hot Module Replacement for instant updates
  • Modern CSS with custom styling

Getting Started

After creating your project:

cd your-project-name
pnpm install  # install dependencies (if not already done)
pnpm dev      # start development server

Note: vibe-init uses pnpm as the primary package manager for better performance and disk space efficiency. Make sure you have pnpm installed: npm install -g pnpm

Template-specific Commands

turbo-react-router

pnpm dev      # start all apps in development
pnpm build    # build all packages
pnpm lint     # lint all packages
pnpm format   # format code with Prettier

simple-react

pnpm dev      # start development server
pnpm build    # build for production
pnpm preview  # preview production build
pnpm lint     # run ESLint

Available Scripts

  • pnpm dev - Start development server
  • pnpm build - Build all packages
  • pnpm lint - Lint all packages
  • pnpm format - Format code with Prettier

Project Structure

turbo-react-router Template

your-project/
├── apps/
│   └── web/              # React application
├── packages/
│   ├── ui/               # Shared UI components
│   ├── eslint-config/    # ESLint configuration
│   └── typescript-config/ # TypeScript configuration
├── package.json
├── pnpm-workspace.yaml
└── turbo.json

simple-react Template

your-project/
├── src/
│   ├── App.tsx
│   ├── main.tsx
│   ├── App.css
│   └── index.css
├── public/
├── package.json
├── tsconfig.json
├── vite.config.ts
└── README.md

Development

To contribute to this template:

  1. Clone the repository
  2. Make your changes in the templates/ directory
  3. Test the changes by running node index.js in the vibe-init directory
  4. Submit a pull request

License

MIT