Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 580 Bytes

File metadata and controls

31 lines (21 loc) · 580 Bytes

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/cli

Usage

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