Create New Project

Install projxo

npm install -g projxo

Navigate to the location you want project get created or in root of your system Type command in terminal

pxo

Interactive prompts guide you through:

  1. Framework selection (React, Next.js, Angular, React Native)
  2. Project name
  3. Location
  4. IDE preference

Supported frameworks:

  • Angular (Latest version)
  • Ionic + React (Mobile apps)
  • Ionic + Angular (Mobile apps)
  • Ionic + Vue (Mobile apps)
  • Next.js (App Router, TypeScript)
  • Next.js + shadcn/ui (Pre-configured with shadcn components)
  • Nuxt.js (Vue.js framework)
  • React + Vite (JavaScript or TypeScript)
  • React Native (Expo)

Supported IDEs:

ProjXO auto-opens projects in your preferred IDE:

  • VS Code (code)
  • Cursor (cursor)
  • WebStorm (webstorm)
  • IntelliJ IDEA (idea)
  • Sublime Text (subl)
  • Atom (atom)

Setup command-line tools:

VS Code:

  1. Open Command Palette (Cmd/Ctrl+Shift+P)
  2. Type: "Shell Command: Install 'code' command in PATH"

Other IDEs: Check your IDE's documentation for CLI setup.

šŸ“– Usage Examples

Create a React App

$ pxo

? Select project type: React + Vite
? Enter project name: my-landing-page
? Enter directory: ~/projects
? Select IDE: VS Code

āœ“ Project created successfully!
āœ“ Project added to tracking

# Start developing:
cd ~/projects/my-landing-page
npm run dev