projxo 1.0.2 β†’ 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/Readme.md CHANGED
@@ -1,483 +1,450 @@
1
1
  # ProjXO
2
2
 
3
- > **Quick project setup CLI for modern web frameworks**
4
- > Stop wasting time with repetitive project scaffolding. Create production-ready projects in seconds.
3
+ **One command, Any framework**
4
+
5
+ > **Quick project setup and management CLI for modern web frameworks**
6
+ > Create projects in seconds. Never lose track of them again.
5
7
 
6
8
  [![npm version](https://img.shields.io/npm/v/projxo.svg)](https://www.npmjs.com/package/projxo)
7
9
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
8
10
 
9
11
  ---
10
12
 
11
- ## πŸš€ Why ProjXO?
13
+ ## πŸš€ Quick Start
14
+
15
+ ```bash
16
+ # Install globally
17
+ npm install -g projxo
18
+
19
+ # Create a new project
20
+ pxo
21
+
22
+ # List all your projects
23
+ pxo list
24
+
25
+ # Open a project quickly
26
+ pxo open my-app
27
+
28
+ # List all your recently accessed projects
29
+ pxo recent
30
+ ```
31
+
32
+ **That's it!** Pick your framework, name your project, and start coding.
33
+
34
+ ---
35
+
36
+ ## ✨ What is ProjXO?
12
37
 
13
- As developers, we create new projects constantlyβ€”prototypes, client work, side projects, experiments. But every time, we go through the same tedious process:
38
+ **Create projects. Track them. Never lose them.**
39
+
40
+ ProjXO eliminates the repetitive setup process for new projects. Instead of:
14
41
 
15
42
  ```bash
16
- # The old way (too many steps!)
17
43
  npx create-vite my-app
18
44
  cd my-app
19
45
  npm install
20
46
  code .
47
+ # Wait... where did I save that other project?
21
48
  ```
22
49
 
23
- **ProjXO does it all in one interactive command:**
50
+ You get:
24
51
 
25
52
  ```bash
26
- pxo
53
+ pxo # Create & track projects
54
+ pxo list # See all your projects
55
+ pxo open my-app # Open instantly
56
+ pxo recent # See all recent projects
27
57
  ```
28
58
 
29
- That's it. Pick your framework, name your project, choose where it goes, and you're coding in seconds.
30
-
31
- ---
32
-
33
- ## ✨ Features
34
-
35
- - **🎯 One Command Setup** - Interactive CLI guides you through everything
36
- - **⚑ Latest Tools** - Uses current best practices (Vite, not deprecated CRA)
37
- - **🎨 Multiple Frameworks** - React, Next.js, Angular, React Native
38
- - **πŸ”§ IDE Integration** - Auto-opens in VS Code, Cursor, WebStorm, etc.
39
- - **🌍 Cross-Platform** - Works on macOS, Windows, and Linux
40
- - **πŸ’¨ Zero Config** - No setup files, no configuration needed
59
+ **One command. Zero hassle.**
41
60
 
42
61
  ---
43
62
 
44
63
  ## πŸ“¦ Installation
45
64
 
46
- ### Global Installation (Recommended)
47
-
48
65
  ```bash
49
66
  npm install -g projxo
50
67
  ```
51
68
 
52
- Now use from anywhere:
69
+ **Requirements:**
53
70
 
54
- ```bash
55
- pxo
56
- ```
71
+ - Node.js >= 14.0.0
72
+ - npm >= 6.0.0
57
73
 
58
- ### npx (No Install)
74
+ ---
59
75
 
60
- ```bash
61
- npx projxo
62
- ```
76
+ ## πŸ› οΈ Available Commands
63
77
 
64
- ---
78
+ | Command | Alias | Description |
79
+ |---------|-------|-------------|
80
+ | `pxo` | - | Create a new project with interactive setup |
81
+ | `pxo list` | `pxo ls` | Browse and manage all tracked projects |
82
+ | `pxo recent [limit]` | - | Browse recently accessed projects |
83
+ | `pxo open <project-name>` | - | Quick open project by name |
84
+ | `pxo --version` | `pxo -V` | Show version number |
85
+ | `pxo --help` | `pxo -h` | Display help information |
65
86
 
66
- ## 🎯 Quick Start
87
+ ---
67
88
 
68
- ### Create Your First Project
89
+ ### Create New Project
69
90
 
70
91
  ```bash
71
92
  pxo
72
93
  ```
73
94
 
74
- That's it! The CLI will:
95
+ **Interactive prompts guide you through:**
75
96
 
76
- 1. Ask what framework you want (React, Next.js, Angular, or React Native)
77
- 2. Ask for your project name
78
- 3. Ask where to create it
79
- 4. Ask which IDE to open it in
80
- 5. Create the project and open it
97
+ 1. Framework selection (React, Next.js, Angular, React Native)
98
+ 2. Project name
99
+ 3. Location
100
+ 4. IDE preference
81
101
 
82
- **Total time: ~30 seconds** ⚑
102
+ #### **Supported frameworks:**
83
103
 
84
- ---
104
+ - **React + Vite** (JavaScript or TypeScript)
105
+ - **Next.js** (App Router, TypeScript)
106
+ - **Angular** (Latest version)
107
+ - **React Native** (Expo)
85
108
 
86
- ## πŸ› οΈ Supported Project Types
109
+ #### **Supported IDEs:**
87
110
 
88
- ### React + Vite (JavaScript)
111
+ ProjXO auto-opens projects in your preferred IDE:
89
112
 
90
- Modern React development with Vite's lightning-fast HMR
113
+ - **VS Code** (`code`)
114
+ - **Cursor** (`cursor`)
115
+ - **WebStorm** (`webstorm`)
116
+ - **IntelliJ IDEA** (`idea`)
117
+ - **Sublime Text** (`subl`)
118
+ - **Atom** (`atom`)
91
119
 
92
- ```bash
93
- pxo
94
- # Select: React + Vite
95
- ```
120
+ **Setup command-line tools:**
121
+
122
+ **VS Code:**
96
123
 
97
- **Includes:**
124
+ 1. Open Command Palette (`Cmd/Ctrl+Shift+P`)
125
+ 2. Type: "Shell Command: Install 'code' command in PATH"
98
126
 
99
- - React 18+
100
- - Vite 5+
101
- - ESLint configuration
102
- - Fast Refresh
127
+ **Other IDEs:** Check your IDE's documentation for CLI setup.
103
128
 
104
- ### React + Vite (TypeScript)
129
+ ---
105
130
 
106
- Type-safe React with Vite
131
+ ### List All Projects
107
132
 
108
133
  ```bash
109
- pxo
110
- # Select: React + Vite (TypeScript)
134
+ pxo list
135
+ # or
136
+ pxo ls
111
137
  ```
112
138
 
113
- **Includes:**
139
+ **Shows all your tracked projects with:**
114
140
 
115
- - Everything from React + Vite
116
- - TypeScript 5+
117
- - Type definitions
141
+ - Project name
142
+ - Framework type
143
+ - Last accessed time
118
144
 
119
- ### Next.js
145
+ **Interactive actions:**
120
146
 
121
- Production-ready React framework
147
+ Select a project and perform actions
122
148
 
123
- ```bash
124
- pxo
125
- # Select: Next.js
126
- ```
149
+ - πŸ“‚ Open in IDE
150
+ - πŸ“‹ Copy project path
151
+ - πŸ—‘οΈ Remove from tracking
152
+ - ℹ️ Show detailed info
127
153
 
128
- **Includes:**
154
+ **Example output:**
129
155
 
130
- - Next.js 14+ (App Router)
131
- - TypeScript support
132
- - ESLint + Prettier
133
- - Optimized build setup
156
+ ``` bash
157
+ πŸ“¦ Your Projects (5)
134
158
 
135
- ### Angular
159
+ ❯ my-awesome-app React+Vite 2 hours ago
160
+ client-dashboard Next.js 1 day ago
161
+ mobile-game React Native 3 days ago
162
+ legacy-project Angular 1 week ago
163
+ test-app React+Vite 2 weeks ago
136
164
 
137
- Enterprise-grade framework
165
+ Use ↑↓ to navigate β€’ Enter to select
166
+ ```
167
+
168
+ ### Recent Projects
138
169
 
139
170
  ```bash
140
- pxo
141
- # Select: Angular
171
+ pxo recent
172
+ # or with custom limit
173
+ pxo recent 5
142
174
  ```
143
175
 
144
- **Includes:**
176
+ ***Shows your recently accessed projects (default: last 10)***
145
177
 
146
- - Angular 17+
147
- - TypeScript
148
- - Angular CLI tools
149
- - Testing setup
178
+ **Features:**
150
179
 
151
- ### React Native (Expo)
180
+ - Sorted by last accessed time (most recent first)
181
+ - Quick selection with arrow keys
182
+ - Select to open in your preferred IDE
152
183
 
153
- Mobile apps with React
184
+ **Example output:**
154
185
 
155
- ```bash
156
- pxo
157
- # Select: React Native (Expo)
186
+ ``` bash
187
+ πŸ• Recent Projects (5)
188
+
189
+ Select a project to open:
190
+ ❯ 1. my-awesome-app React+Vite 2 hours ago
191
+ 2. client-dashboard Next.js 1 day ago
192
+ 3. mobile-game React Native 3 days ago
193
+ 4. api-server Next.js 5 days ago
194
+ 5. test-project React+Vite 1 week ago
158
195
  ```
159
196
 
160
- **Includes:**
197
+ **Use case:** Perfect for quickly switching between active projects without browsing the full list.
161
198
 
162
- - Expo SDK
163
- - TypeScript support
164
- - Development tools
165
- - Platform-specific configurations
199
+ ### Quick Open Project
166
200
 
167
- ---
201
+ ```bash
202
+ pxo open <project-name>
203
+ ```
168
204
 
169
- ## 🎨 IDE Integration
205
+ **Instantly open a project by name** - the fastest way to access your work.
170
206
 
171
- ProjXO can automatically open your project in your preferred IDE:
207
+ **Features:**
172
208
 
173
- ### Supported IDEs
209
+ - Direct project opening by name
210
+ - Fuzzy search if exact match not found
211
+ - Opens in your preferred IDE
212
+ - Updates last accessed timestamp
174
213
 
175
- - **VS Code** - `code` command
176
- - **Cursor** - `cursor` command
177
- - **WebStorm** - `webstorm` command
178
- - **IntelliJ IDEA** - `idea` command
179
- - **Sublime Text** - `subl` command
180
- - **Atom** - `atom` command
214
+ **Example output:**
181
215
 
182
- ### Setup IDE Command-Line Tools
216
+ ``` bash
217
+ # Exact match
218
+ pxo open my-awesome-app
183
219
 
184
- **VS Code:**
220
+ # Fuzzy match (finds "my-awesome-app")
221
+ pxo open awesome
185
222
 
186
- 1. Open VS Code
187
- 2. Press `Cmd/Ctrl + Shift + P`
188
- 3. Type "Shell Command: Install 'code' command in PATH"
189
- 4. Done!
223
+ # Multiple matches - shows selection menu
224
+ pxo open app
225
+ ```
190
226
 
191
- **Cursor:**
192
- Usually available after installation
227
+ ```bash
228
+ $ pxo open dashboard
193
229
 
194
- **WebStorm/IntelliJ:**
195
- Tools β†’ Create Command-line Launcher
230
+ Found similar project: client-dashboard
231
+ βœ“ Opening client-dashboard in VS Code...
232
+ βœ“ Opened client-dashboard
233
+ ```
196
234
 
197
- **Others:**
198
- Refer to your IDE's documentation
235
+ **Use case:** When you know the project name, this is the fastest way to open it.
199
236
 
200
237
  ---
201
238
 
202
- ## πŸ“– Usage Examples
203
-
204
- ### Example 1: Enterprise Web App
239
+ ### Version & Help
205
240
 
206
241
  ```bash
207
- pxo
208
-
209
- # Select: Angular
210
- # Name: my-ent-app
211
- # Directory: ~/projects
212
- # IDE: VS Code
242
+ # Check version
243
+ pxo --version
213
244
 
214
- # Project created and opened in VS Code!
215
- # Start: npm run dev
245
+ # Show help
246
+ pxo --help
216
247
  ```
217
248
 
218
- ### Example 2: Landing Page
249
+ ---
250
+
251
+ ## πŸ“– Usage Examples
252
+
253
+ ### Example 1: Create React App
219
254
 
220
255
  ```bash
221
- pxo
256
+ $ pxo
222
257
 
223
- # Select: React + Vite
224
- # Name: my-landing-page
225
- # Directory: ~/projects
226
- # IDE: VS Code
258
+ ? Select project type: React + Vite
259
+ ? Enter project name: my-landing-page
260
+ ? Enter directory: ~/projects
261
+ ? Select IDE: VS Code
227
262
 
228
- # Project created and opened in VS Code!
229
- # Start: npm run dev
263
+ βœ“ Project created successfully!
264
+ βœ“ Project added to tracking
265
+
266
+ # Start developing:
267
+ cd ~/projects/my-landing-page
268
+ npm run dev
230
269
  ```
231
270
 
232
- ### Example 3: Full-Stack App
271
+ ---
272
+
273
+ ### Example 2: Browse Your Projects
233
274
 
234
275
  ```bash
235
- pxo
276
+ $ pxo list
236
277
 
237
- # Select: Next.js
238
- # Name: my-saas-app
239
- # Directory: ~/work
240
- # IDE: Cursor
278
+ πŸ“¦ Your Projects (3)
241
279
 
242
- # Next.js project with TypeScript ready!
243
- # Start: npm run dev
280
+ ❯ my-landing-page React+Vite just now
281
+ my-nextjs-app Next.js 2 days ago
282
+ old-angular-app Angular 2 weeks ago
283
+
284
+ # Select a project to:
285
+ # - Open in your IDE
286
+ # - Copy the path
287
+ # - Remove from tracking
288
+ # - View details
244
289
  ```
245
290
 
246
- ### Example 4: Mobile App
291
+ ### Example 3: Quick Access Workflow
247
292
 
248
293
  ```bash
249
- pxo
294
+ # Morning: See what you worked on recently
295
+ $ pxo recent
296
+ # β†’ Select and open your active project
250
297
 
251
- # Select: React Native (Expo)
252
- # Name: my-mobile-app
253
- # Directory: ~/apps
254
- # IDE: VS Code
298
+ # Later: Quick open by name
299
+ $ pxo open client-dashboard
300
+ βœ“ Opened client-dashboard
255
301
 
256
- # Expo project ready!
257
- # Start: npx expo start
302
+ # End of day: Browse all projects
303
+ $ pxo list
304
+ # β†’ Review and organize
258
305
  ```
259
306
 
260
307
  ---
261
308
 
262
- ## βš™οΈ Configuration
309
+ ## πŸ’‘ Tips & Tricks
263
310
 
264
- ProjXO works out of the box with zero configuration. However, you can customize some behaviors:
265
-
266
- ### Default Directory
267
-
268
- ProjXO uses your current directory by default. Change it during the prompt or `cd` to your preferred location first:
311
+ ### Use Recent for Active Work
269
312
 
270
313
  ```bash
271
- cd ~/projects
272
- pxo
273
- ```
274
-
275
- ### Skip IDE Opening
314
+ # Working on multiple projects?
315
+ pxo recent
276
316
 
277
- If you prefer to open projects manually:
278
-
279
- ```bash
280
- pxo
281
- # Select: Skip (open manually)
317
+ # Shows only what you've touched recently
318
+ # Much faster than scrolling through all projects
282
319
  ```
283
320
 
284
- ---
285
-
286
- ## πŸŽ“ Tips & Best Practices
287
-
288
- ### Tip 1: Use Consistent Naming
321
+ ### Quick Open for Speed
289
322
 
290
323
  ```bash
291
- # Good naming conventions
292
- my-project-name βœ“
293
- my_project_name βœ“
294
- MyProjectName βœ“
295
-
296
- # Avoid
297
- my project name βœ— (spaces)
298
- my-project-name! βœ— (special chars)
324
+ # If you remember the name, use open
325
+ pxo open my-app
326
+
327
+ # Fuzzy search helps with partial names
328
+ pxo open dash # finds "client-dashboard"
299
329
  ```
300
330
 
301
- ### Tip 2: Organize Projects
331
+ ### Organize Your Projects
302
332
 
303
333
  ```bash
304
- # Keep projects organized by type
334
+ # Keep projects organized
305
335
  ~/projects/clients/
306
336
  ~/projects/personal/
307
- ~/projects/experiments/
337
+ ~/projects/learning/
308
338
 
309
- # Use ProjXO in each folder
339
+ # Create projects in the right place
310
340
  cd ~/projects/clients
311
341
  pxo
312
342
  ```
313
343
 
314
- ### Tip 3: Learn the Frameworks
344
+ ### Review Project Details
315
345
 
316
- ProjXO uses official tools:
346
+ ```bash
347
+ pxo list
348
+ # β†’ Select project β†’ Show details
349
+
350
+ # See full information:
351
+ # - Complete path
352
+ # - Creation date
353
+ # - Framework type
354
+ # - Default IDE
355
+ ```
317
356
 
318
- - **React + Vite**: [vitejs.dev/guide](https://vitejs.dev/guide/)
319
- - **Next.js**: [nextjs.org/docs](https://nextjs.org/docs)
320
- - **Angular**: [angular.io/docs](https://angular.io/docs)
321
- - **Expo**: [docs.expo.dev](https://docs.expo.dev)
357
+ ---
322
358
 
323
- ### Tip 4: Post-Setup Tasks
359
+ ## πŸ“Š How It Works
324
360
 
325
- After project creation:
361
+ ### Automatic Tracking
326
362
 
327
- **For all projects:**
363
+ Every project you create with ProjXO is automatically tracked:
328
364
 
329
365
  ```bash
330
- cd your-project
331
- git init
332
- git add .
333
- git commit -m "Initial commit"
334
- ```
366
+ pxo
367
+ # Creates project...
368
+ βœ“ Project added to tracking
335
369
 
336
- **Add common packages:**
370
+ # Data stored in: ~/.projxo/projects.json
371
+ ```
337
372
 
338
- ```bash
339
- # For React projects
340
- npm install axios react-query zustand
373
+ ### What's Stored
341
374
 
342
- # For styling
343
- npm install tailwindcss @shadcn/ui
375
+ - Project name and path
376
+ - Framework type
377
+ - Creation and last accessed timestamps
378
+ - IDE preference
344
379
 
345
- # For forms
346
- npm install react-hook-form zod
347
- ```
380
+ **Privacy:** All data stays local on your machine. No cloud sync, no tracking.
348
381
 
349
382
  ---
350
383
 
351
384
  ## 🚨 Troubleshooting
352
385
 
353
- ### Issue: Command not found
354
-
355
- **Problem:** `pxo: command not found`
356
-
357
- **Solution:**
386
+ ### Command Not Found
358
387
 
359
388
  ```bash
360
389
  # Reinstall globally
361
390
  npm install -g projxo
362
391
 
363
- # Or use full path
392
+ # Or use with npx
364
393
  npx projxo
365
394
  ```
366
395
 
367
- ### Issue: Permission denied
368
-
369
- **Problem:** `EACCES: permission denied`
370
-
371
- **Solution (macOS/Linux):**
396
+ ### Permission Errors (macOS/Linux)
372
397
 
373
398
  ```bash
374
- # Fix npm permissions
375
399
  sudo chown -R $(whoami) ~/.npm
376
400
  sudo chown -R $(whoami) /usr/local/lib/node_modules
377
-
378
- # Then reinstall
379
401
  npm install -g projxo
380
402
  ```
381
403
 
382
- **Solution (Windows):**
383
- Run terminal as Administrator
384
-
385
- ### Issue: IDE doesn't open
386
-
387
- **Problem:** IDE selected but doesn't open
404
+ ### IDE Doesn't Open
388
405
 
389
- **Solution:**
406
+ 1. Verify IDE is installed
407
+ 2. Setup command-line tools (see IDE Integration)
408
+ 3. Test manually: `code .` or `cursor .`
390
409
 
391
- 1. Ensure IDE is installed
392
- 2. Set up command-line tools (see IDE Integration section)
393
- 3. Test command manually:
410
+ ### Projects Not Showing in List
394
411
 
395
- ```bash
396
- code . # for VS Code
397
- cursor . # for Cursor
398
- ```
412
+ **Projects created before v1.1.0 aren't tracked.**
399
413
 
400
- ### Issue: Project creation fails
414
+ Only projects created after installing v1.1.0+ are automatically tracked.
401
415
 
402
- **Problem:** Error during project creation
416
+ ### Project Not Found (Open Command)
403
417
 
404
- **Solutions:**
405
-
406
- - **Check internet connection** - npm needs to download packages
407
- - **Clear npm cache** - `npm cache clean --force`
408
- - **Update Node.js** - Ensure Node.js >= 14.0.0
409
- - **Check disk space** - Ensure enough space for node_modules
410
-
411
- ---
412
-
413
- ## πŸ”§ Requirements
414
-
415
- - **Node.js** >= 14.0.0
416
- - **npm** >= 6.0.0 (comes with Node.js)
417
- - **Internet connection** (for downloading packages)
418
-
419
- ### Check Your Versions
418
+ If `pxo open` can't find your project:
420
419
 
421
420
  ```bash
422
- node --version # Should be >= 14.0.0
423
- npm --version # Should be >= 6.0.0
424
- ```
421
+ # Use list to see exact names
422
+ pxo list
425
423
 
426
- ### Update Node.js
427
-
428
- **Using nvm (recommended):**
429
- ```bash
430
- nvm install 20
431
- nvm use 20
424
+ # Or try partial name (fuzzy search)
425
+ pxo open partial-name
432
426
  ```
433
427
 
434
- **Direct download:**
435
- [nodejs.org/download](https://nodejs.org/download)
436
-
437
428
  ---
438
429
 
439
430
  ## 🀝 Contributing
440
431
 
441
- ProjXO is open source and contributions are welcome!
442
- To make thing easy and manageable use PR (pull requests) as much as possible.
432
+ Contributions are welcome! Please use pull requests.
443
433
 
444
- ### Ways to Contribute
434
+ **Ways to contribute:**
445
435
 
446
436
  - πŸ› Report bugs
447
- - πŸ’‘ Suggest features
448
- - πŸ“– Improve documentation
449
- - πŸ”§ Submit pull requests
437
+ - πŸ’‘ Suggest features
438
+ - πŸ“– Improve docs
439
+ - πŸ”§ Submit PRs
450
440
 
451
- ### Development Setup
441
+ **Development setup:**
452
442
 
453
443
  ```bash
454
- # Clone the repository
455
444
  git clone https://github.com/sasangachathumal/ProjXO.git
456
445
  cd ProjXO
457
-
458
- # Install dependencies
459
446
  npm install
460
-
461
- # Test locally
462
- node index.js
463
-
464
- # Test globally
465
- npm link
466
- pxo
467
- ```
468
-
469
- ### Project Structure
470
-
471
- ```
472
- ProjXO/
473
- β”œβ”€β”€ index.js # Entry point
474
- β”œβ”€β”€ package.json
475
- └── src/
476
- β”œβ”€β”€ cli.js # Main CLI logic
477
- β”œβ”€β”€ config/ # Framework & IDE configs
478
- β”œβ”€β”€ utils/ # Helper functions
479
- β”œβ”€β”€ prompts/ # User prompts
480
- └── handlers/ # Business logic
447
+ node index.js # Test locally
481
448
  ```
482
449
 
483
450
  ---
@@ -486,56 +453,31 @@ ProjXO/
486
453
 
487
454
  MIT Β© Sasanga Chathumal
488
455
 
489
- See [LICENSE](LICENSE) file for details.
490
-
491
456
  ---
492
457
 
493
458
  ## πŸ™ Credits
494
459
 
495
- ProjXO uses these amazing tools:
496
-
497
- - [Vite](https://vitejs.dev/) - Next generation frontend tooling
498
- - [Next.js](https://nextjs.org/) - React framework
499
- - [Angular CLI](https://angular.io/cli) - Angular development tools
500
- - [Expo](https://expo.dev/) - React Native framework
501
- - [Inquirer.js](https://github.com/SBoudrias/Inquirer.js) - Interactive CLI prompts
502
-
503
- ---
504
-
505
- ## πŸ—ΊοΈ Roadmap
506
-
507
- ### Current Version (v1.0.0)
508
-
509
- - βœ… Interactive project creation
510
- - βœ… 5 framework templates
511
- - βœ… IDE integration
512
- - βœ… Cross-platform support
513
-
514
- ### Planned Features
515
-
516
- - πŸ”„ Project tracking and quick access
517
- - πŸ”„ Bookmarking favorite projects
518
- - πŸ”„ Custom project templates
519
- - πŸ”„ Post-setup automation (install common packages)
520
- - πŸ”„ Git options
521
- - πŸ”„ Team templates sharing
460
+ Built with:
461
+ - [Vite](https://vitejs.dev/)
462
+ - [Next.js](https://nextjs.org/)
463
+ - [Angular CLI](https://angular.io/cli)
464
+ - [Expo](https://expo.dev/)
465
+ - [Inquirer.js](https://github.com/SBoudrias/Inquirer.js)
466
+ - [Commander.js](https://github.com/tj/commander.js)
522
467
 
523
468
  ---
524
469
 
525
- ## πŸ’¬ Support
526
-
527
- ### Get Help
470
+ ## πŸ’¬ Support & Links
528
471
 
529
472
  - πŸ“– [Documentation](https://github.com/sasangachathumal/ProjXO#readme)
530
- - πŸ› [Issue Tracker](https://github.com/sasangachathumal/ProjXO/issues)
473
+ - πŸ› [Issues](https://github.com/sasangachathumal/ProjXO/issues)
531
474
  - πŸ’¬ [Discussions](https://github.com/sasangachathumal/ProjXO/discussions)
475
+ - πŸ“¦ [npm Package](https://www.npmjs.com/package/projxo)
532
476
 
533
- ### Stay Updated
477
+ **Connect:**
534
478
 
535
- - ⭐ [Star on GitHub](https://github.com/sasangachathumal/ProjXO)
536
- - 🐦 [Follow on X](https://x.com/SasangaChathum1)
537
- - πŸ’Ό [Follow on linkedIn](https://www.linkedin.com/in/sasanga-chathumal/)
538
- - πŸ“‹ [Follow on facebook](https://www.facebook.com/profile.php?id=61582131982373)
479
+ - 🐦 [X/Twitter](https://x.com/SasangaChathum1)
480
+ - πŸ’Ό [LinkedIn](https://www.linkedin.com/in/sasanga-chathumal/)
539
481
  - πŸ“§ [Email](mailto:devbysasanga@gmail.com)
540
482
 
541
483
  ---
@@ -543,58 +485,35 @@ ProjXO uses these amazing tools:
543
485
  ## ⚑ Quick Reference
544
486
 
545
487
  ```bash
546
- # Create new project
488
+ # Create project
547
489
  pxo
548
490
 
549
- # Check version
550
- pxo --version
551
-
552
- # Get help
553
- pxo --help
554
-
555
- # Use without installing
556
- npx projxo
557
- ```
558
-
559
- ---
560
-
561
- ## πŸ“Š Comparison
562
-
563
- ### ProjXO vs Manual Setup
491
+ # List projects
492
+ pxo list
493
+ pxo ls
564
494
 
565
- | Task | Manual | ProjXO |
566
- |------|--------|--------|
567
- | Choose framework | Research docs | Interactive selection |
568
- | Run create command | Remember exact command | Handled automatically |
569
- | Navigate to project | `cd` manually | Automatic |
570
- | Open in IDE | `code .` manually | Automatic |
571
- | **Total time** | **3-5 minutes** | **30 seconds** |
495
+ # Recent projects
496
+ pxo recent
497
+ pxo recent 5
572
498
 
573
- ### ProjXO vs Other Tools
499
+ # Quick open
500
+ pxo open <project-name>
574
501
 
575
- | Feature | ProjXO | create-* tools | Yeoman |
576
- |---------|--------|----------------|---------|
577
- | Interactive | βœ… | ⚠️ Varies | βœ… |
578
- | Multi-framework | βœ… | ❌ Single | ⚠️ Depends |
579
- | IDE Integration | βœ… | ❌ | ❌ |
580
- | Zero config | βœ… | βœ… | ❌ |
581
- | Modern tools | βœ… | ⚠️ Some outdated | ⚠️ Many outdated |
582
-
583
- ---
584
-
585
- ## πŸ”— Links
502
+ # Version
503
+ pxo --version
504
+ pxo -V
586
505
 
587
- - **npm**: [npmjs.com/package/ProjXO](https://www.npmjs.com/package/ProjXO)
588
- - **GitHub**: [github.com/sasangachathumal/ProjXO](https://github.com/sasangachathumal/ProjXO)
589
- - **Issues**: [github.com/sasangachathumal/ProjXO/issues](https://github.com/sasangachathumal/ProjXO/issues)
590
- - **Changelog**: [CHANGELOG.md](CHANGELOG.md)
506
+ # Help
507
+ pxo --help
508
+ pxo -h
509
+ ```
591
510
 
592
511
  ---
593
512
 
594
513
  <div align="center">
595
514
 
596
- **Made with ❀️ by developers, for developers**
515
+ **Stop wasting time on setup. Start building.**
597
516
 
598
- [⭐ Star on GitHub](https://github.com/sasangachathumal/ProjXO) β€’ [πŸ“¦ npm Package](https://www.npmjs.com/package/ProjXO) β€’ [πŸ› Report Bug](https://github.com/sasangachathumal/ProjXO/issues)
517
+ [⭐ Star on GitHub](https://github.com/sasangachathumal/ProjXO) β€’ [πŸ“¦ Install Now](https://www.npmjs.com/package/projxo) β€’ [πŸ› Report Issue](https://github.com/sasangachathumal/ProjXO/issues)
599
518
 
600
519
  </div>