Commands
The primary command for Exon CLI iscreate.
Scaffolds a new Express project in a folder with the specified
<name>.Enables Docker support immediately, adding a
Dockerfile, .dockerignore, and docker-compose.yml to the project.Examples
To create a project namedblog-backend with TypeScript and Docker:
Interactive Prompts
When you run thecreate command without flags, the CLI walks you through a series of interactive prompts:
- Language Selection: Choose between
TypeScriptandJavaScript. - Database ORM: Choose between
Mongoose,Prisma,Drizzle, orNone. - Docker Support: Choose whether to generate a Docker configuration.
npm install for you in the newly created folder, so you can immediately begin developing.