/cli
/build

Build Command

Usage

nitrostack build

What It Does

  1. Compiles TypeScript to JavaScript
  2. Bundles dependencies
  3. Optimizes for production
  4. Creates `dist/` directory

Output

dist/
ā”œā”€ā”€ index.js
ā”œā”€ā”€ modules/
└── ... (compiled code)

Production Deployment

nitrostack build
node dist/index.js

Next Steps