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

@orga-ai/create-orga-next-app

v1.0.4

Published

The easiest way to get started with [Orga AI](https://orga.ai) in Next.js. This CLI tool bootstraps a Next.js project with Orga AI SDKs, ShadCN UI components, and pre-configured setup files.

Readme

@orga-ai/create-orga-next-app

The easiest way to get started with Orga AI in Next.js. This CLI tool bootstraps a Next.js project with Orga AI SDKs, ShadCN UI components, and pre-configured setup files.

Quick Start

npx @orga-ai/create-orga-next-app my-app
cd my-app
npm run dev

Then open http://localhost:3000 in your browser.

What's Included

Your new Next.js project comes pre-configured with:

  • Orga AI SDKs

    • @orga-ai/react - React SDK for client-side integration
    • @orga-ai/node - Node.js SDK for server-side integration
  • ShadCN UI Components

    • Button, Label, Select, Slider, Textarea components
    • Pre-configured with Tailwind CSS
  • Pre-configured Files

    • app/page.tsx - Interactive playground showcasing Orga AI features
    • app/layout.tsx - Root layout with OrgaProvider setup
    • app/providers/OrgaProvider.tsx - Orga AI React provider component
    • app/api/route.ts - API route handler for Orga AI requests
    • .env.local - Environment variables template
  • Additional Dependencies

    • lucide-react - Icon library

Prerequisites

  • Node.js 18.x or higher
  • npm (comes with Node.js)

Usage

Basic Usage

npx @orga-ai/create-orga-next-app [project-name]

Options

  • --skip-build - Skip building the project after setup (faster, but you'll need to build manually)
  • --dry-run - Show what would be done without actually creating the project

Examples

# Create a new project
npx @orga-ai/create-orga-next-app my-orga-app

# Create with skip-build option
npx @orga-ai/create-orga-next-app my-orga-app --skip-build

# See what would happen (dry run)
npx @orga-ai/create-orga-next-app my-orga-app --dry-run

Next Steps

After creating your project:

  1. Navigate to your project directory:

    cd my-orga-app
  2. Add your Orga AI credentials:

    • Open .env.local in your project root
    • Add your ORGAAI_API_KEY and ORGAAI_USER_EMAIL
  3. Start the development server:

    npm run dev
  4. Open your browser:

Project Structure

Your generated project will have the following structure:

my-orga-app/
├── app/
│   ├── page.tsx              # Orga AI Playground page
│   ├── layout.tsx            # Root layout with OrgaProvider
│   ├── providers/
│   │   └── OrgaProvider.tsx # Orga AI React provider
│   └── api/
│       └── route.ts          # API route handler
├── .env.local                # Environment variables (add your credentials here)
└── ...                       # Standard Next.js files

Troubleshooting

Node.js version is not supported

Ensure you have Node.js 18.x or higher installed:

node --version

If you need to update Node.js, visit nodejs.org.

Directory already exists

The project directory must not exist or must be empty. Choose a different project name or remove/empty the existing directory.

Failed to create Next.js project

  • Check your internet connection (create-next-app downloads templates)
  • Ensure you have write permissions in the current directory

Failed to install packages

  • Check your internet connection
  • Verify npm registry is accessible
  • Try clearing npm cache: npm cache clean --force

Build fails after project creation

This is non-critical. The project is still usable. You can build it manually later:

cd my-orga-app
npm run build

ShadCN components installation issues

ShadCN requires Tailwind CSS, which should be automatically configured by create-next-app. If you encounter issues:

  1. Ensure the Next.js project was created successfully
  2. Check that tailwind.config.ts exists in your project
  3. Verify postcss.config.js is present

Learn More

License

ISC