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:
- Framework selection (React, Next.js, Angular, React Native)
- Project name
- Location
- 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:
- Open Command Palette (
Cmd/Ctrl+Shift+P) - 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