JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 49
  • Score
    100M100P100Q89518F
  • License MIT

A CLI tool to scaffold a React (Vite) and Express fullstack application.

Package Exports

  • create-initx
  • create-initx/dist/cli.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (create-initx) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

create-initx 🚀

A lightning-fast CLI tool to scaffold a modern full-stack application with React (Vite) on the frontend and Express on the backend, pre-configured with a root orchestrator.

Features

  • Frontend: React + Vite (Fast Refresh enabled).
  • Backend: Node.js + Express (CORS pre-configured).
  • Orchestration: Run both frontend and backend simultaneously with a single command using concurrently.
  • Pre-built Status Check: A built-in connection test to verify your API is talking to your UI immediately.

Quick Start

You don't need to install anything globally. Just run:

npx create-initx my-app

Installation

After the scaffolding is complete, follow these steps:

  1. Navigate to the project directory:

    cd my-app
  2. Install all dependencies (Root, Frontend, and Backend):

    npm run install-all
  3. Start the development servers:

    npm run dev

Your frontend will be running on http://localhost:5173 and your backend on http://localhost:5000.

Project Structure

my-app/
├── frontend/        # Vite + React
├── backend/         # Express Server
└── package.json     # Root orchestrator

Developed By

License

MIT