@stratify/cli
v0.2.2
Published
Command-line tool for [Stratify](https://www.npmjs.com/package/@stratify/core), a modular Fastify framework with DI and TypeScript support. It scaffolds a ready-to-use Stratify project with TypeScript, ESLint, and Prettier.
Readme
Stratify CLI
Command-line tool for Stratify, a modular Fastify framework with DI and TypeScript support. It scaffolds a ready-to-use Stratify project with TypeScript, ESLint, and Prettier.
Installation
npm install -g @stratify/cliUsage
npx stratify-cli new <app-name>Creates a new project with:
- TypeScript + ESM
- ESLint and Prettier setup
- Example module under
/src/tasks(controllers, providers, hooks, installers, adapters)
Then:
cd <app-name>
npm install
npm run dev