Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

create-bluecopa-react-app

Package Overview
Dependencies
Maintainers
3
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

create-bluecopa-react-app

CLI tool to create bluecopa React applications

latest
Source
npmnpm
Version
1.0.43
Version published
Maintainers
3
Created
Source

create-bluecopa-react-app npm version License

A CLI Tool for Bluecopa React Applications

A command-line interface for bootstrapping modern React applications with Bluecopa integration, featuring opinionated best practices and pre-configured tooling.

Table of Contents

Version

Current version: 1.0.5

Installation

npm install -g create-bluecopa-react-app
# or
pnpm add -g create-bluecopa-react-app

Requirements

  • Node.js >= 18.0.0
  • npm >= 9.0.0 or pnpm >= 8.0.0

Configuration

The CLI uses environment variables for configuration:

# Optional configuration
export BLUECOPA_BOILERPLATE_REGISTRY=https://registry.npmjs.org

Features

  • 🚀 Modern React Stack: React 18, TypeScript, React Router v7, Vite 6
  • 🌐 Microfrontend Support: Single-spa compatible with module federation
  • 📊 Data Visualization: Recharts integration for charts and analytics
  • 🎨 UI Components: shadcn/ui components built on Radix UI primitives
  • 📡 Bluecopa React Components: Pre-configured @bluecopa/react package with hooks (includes TanStack Query integration)
  • 🎯 Type Safety: Full TypeScript support
  • 📱 Responsive Design: Tailwind CSS v4 with mobile-first approach and Bluecopa design system
  • 🛠️ Development Tools: ESLint, TypeScript checking, and Vite fast build system
  • Fast Development: Hot module replacement with Vite
  • 🔄 Server-side Rendering: React Router v7 with SSR support
  • 🌙 Dark Mode: Built-in theme switching with next-themes
  • 🗂️ Data Tables: TanStack Table with sorting, filtering, and pagination
  • 🎯 Drag & Drop: DND Kit integration for interactive interfaces

Usage

Creating a New Application

# Create new app with default template
create-bluecopa-react-app my-dashboard

# Create new app with shadcn/ui template
create-bluecopa-react-app my-dashboard --template shadcn

# Or use npx
npx create-bluecopa-react-app my-dashboard
npx create-bluecopa-react-app my-dashboard --template shadcn

Available Templates

  • Default Template: Basic React Router setup with essential components
  • shadcn Template: Full-featured template with shadcn/ui components, data tables, charts, and dark mode support

CLI Options

OptionDescription
--skip-installSkip dependency installation
--templateSpecify template (default, shadcn)
--helpShow help information

API Documentation

create-bluecopa-react-app [project-name] [options]

Creates a new Bluecopa React application.

Parameters:

  • project-name: Name of the new project directory
  • options: CLI options (see above)

Returns:

  • Creates project structure
  • Installs dependencies
  • Configures environment

Examples

Basic Usage

create-bluecopa-react-app my-dashboard

Skipping Dependency Installation

create-bluecopa-react-app my-dashboard --skip-install
npx create-bluecopa-react-app my-dashboard

Development

Available Scripts

  • npm run dev - Start Vite development server with hot reload
  • npm run build - Build for production (TypeScript + Vite optimization)
  • npm run start - Start production build locally
  • npm run preview - Preview production build locally
  • npm run lint - Run ESLint for code quality
  • npm run lint:fix - Fix linting issues
  • npm run type-check - Run TypeScript type checking without emitting files
  • npm run clean - Clean build artifacts and dependencies

Technologies Used

  • React 18 - Modern React with concurrent features
  • React Router v7 - Modern routing with SSR support
  • Vite 6 - Fast build tool and development server
  • TypeScript - Full type safety and developer experience
  • @bluecopa/react - Bluecopa-specific React components and hooks
  • shadcn/ui - Accessible component library built on Radix UI
  • Radix UI - Unstyled, accessible UI primitives
  • TanStack Table - Headless table library for React
  • Recharts - Composable charting library for React
  • DND Kit - Drag and drop toolkit for React
  • Tailwind CSS v4 - Utility-first CSS framework with Bluecopa design system
  • next-themes - Theme switching with dark mode support
  • Lucide React - Beautiful, customizable icons

Monorepo Integration

This CLI tool is part of the Bluecopa UI monorepo and integrates with the following packages:

Standalone Development

The generated applications can also be developed independently:

  • Self-contained: All dependencies are properly installed
  • Environment setup: Includes proper environment variable configuration
  • Build optimization: Uses Vite for fast development and production builds
  • Deployment ready: Includes Docker configuration and deployment guides

Keywords

bluecopa

FAQs

Package last updated on 27 May 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts