CLI
info
Print the current StartXKit project configuration.
The info command prints the values from startxkit.config.json.
Use it when you want to quickly confirm which framework, architecture, API prefix, and validation option a project uses.
Usage
npx @startxkit/cli infoRun it from the generated project root.
Example Output
StartXKit 0.1.5
Framework: express
Language: typescript
Architecture: layered
Module directory: src
API prefix: /api/v1
Validation: zod
Auth: disabled
Database: disabled
ORM: disabledFields
| Field | Meaning |
|---|---|
| Framework | The HTTP framework used by the project |
| Language | The generated language, currently TypeScript |
| Architecture | The folder layout strategy |
| Module directory | The root used by module generation |
| API prefix | The global prefix before generated routes |
| Validation | The selected validation library |
| Auth | Reserved for future auth support |
| Database | Reserved for future database support |
| ORM | Reserved for future ORM support |
Why It Matters
add module uses these values to decide where files should be written. If the info output says architecture: layered, new modules will be written into layer folders such as src/routes and src/controllers.