A universal CLI scaffolding tool for quickly generating components, styles, tests, and boilerplate for Vue, React, Angular, and Svelte.
Phorge is currently in early development (v0.1.0). The basic CLI structure is in place with a foundation for generating various types of components and templates.
phorge command when installednew command for generating componentsphorge new <type> <names...>Creates new components, pages, or templates with the specified type and names.
Usage:
phorge new component MyButton
phorge new page HomePage AboutPage
phorge new template HeaderTemplate FooterTemplate
Current behavior:
phorge/
├── bin/
│ └── phorge.js # Main CLI executable
├── lib/
│ └── run-cli.js # CLI logic and command definitions
├── helpers/ # (Reserved for future helper utilities)
├── test/ # (Reserved for future tests)
├── index.js # Entry point
├── package.json # Project configuration
└── README.md # This file
Note: Installation instructions will be added once the package is published to npm.
This project is in early development. The foundation is set for extending functionality to support actual file generation across multiple frontend frameworks.
License information to be added