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 🙏

© 2025 – Pkg Stats / Ryan Hefner

create-fast-turbo

v1.0.0

Published

A CLI tool to quickly scaffold a Turborepo with pre-configured templates

Downloads

6

Readme

create-fast-turbo

A cross-platform CLI tool to quickly scaffold a TurboRepo monorepo with pre-configured templates.

Features

  • Cross-platform: Windows, macOS, Linux support
  • Package Manager Support: npm, pnpm, yarn
  • Symlink Handling: Proper Windows symlink support without EPERM errors
  • Smart Filtering: Excludes node_modules, .git, build artifacts
  • Workspace Configuration: Auto-configures workspace references
  • Complete Template: Includes apps (web, docs) and packages (ui, eslint-config, typescript-config)

Quick Start

# Install globally
npm install -g create-fast-turbo

# Create a new project
create-fast-turbo my-awesome-app

# Start developing
cd my-awesome-app
pnpm dev

Installation

npm install -g create-fast-turbo

Usage

# Basic usage (uses pnpm by default)
create-fast-turbo my-project

# Specify package manager
create-fast-turbo my-project --npm
create-fast-turbo my-project --pnpm
create-fast-turbo my-project --yarn

# Interactive mode
create-fast-turbo

# Help
create-fast-turbo --help

What Gets Created

my-project/
├── apps/
│   ├── web/                 # Next.js web app
│   └── docs/                # Next.js docs site
├── packages/
│   ├── ui/                  # Shared UI components
│   ├── eslint-config/       # ESLint config
│   └── typescript-config/   # TypeScript config
├── package.json
├── turbo.json
└── tsconfig.json

Premium Features

  • Instant Scaffolding: Project appears immediately, no waiting
  • Background Installation: Dependencies install in background
  • Professional UI: Beautiful spinners and progress indicators
  • Smart Defaults: Uses pnpm by default, no prompts needed
  • Command-line Arguments: Full CLI argument support

Technical Details

Cross-Platform Compatibility

  • Windows: Handles symlinks without EPERM errors
  • macOS/Linux: Native symlink support
  • Uses fs-extra for robust file operations

Smart File Filtering

Automatically excludes:

  • node_modules/, .git/
  • Build artifacts (.next/, .turbo/, dist/, out/)
  • Cache dirs (.vercel/, .cache/)
  • Environment files (*.env*)
  • Lock files (package-lock.json, yarn.lock, pnpm-lock.yaml)

Package Manager Configuration

  • npm: Creates package-lock.json, removes pnpm config
  • pnpm: Keeps pnpm-workspace.yaml
  • yarn: Creates workspace config in package.json

Workspace References

All internal dependencies use workspace:*:

{
  "dependencies": {
    "@repo/ui": "workspace:*",
    "@repo/eslint-config": "workspace:*"
  }
}

Development

Setup

git clone https://github.com/GuraaseesSingh/create-fast-turbo
cd create-fast-turbo
npm install
npm link

Testing

# Test with different package managers
create-fast-turbo test-project --npm
create-fast-turbo test-project --pnpm
create-fast-turbo test-project --yarn

# Test interactive mode
create-fast-turbo

# Test help
create-fast-turbo --help

Troubleshooting

  1. Permission Errors on Windows: CLI handles symlinks properly
  2. Template Not Found: Ensure templates/basic directory exists
  3. Package Manager Issues: CLI auto-configures workspace files

Contributing

  1. Fork the repository
  2. Create feature branch: git checkout -b feature/amazing-feature
  3. Commit changes: git commit -m 'Add amazing feature'
  4. Push: git push origin feature/amazing-feature
  5. Open Pull Request

License

ISC License

Author

Guraasees Singh Taneja

Support

If this tool helps you:

  • Star the repository
  • Report bugs
  • Suggest features
  • Share with others