/nest-cli-example

Example repo for nest-cli and tsdk

Primary LanguageTypeScript

Example code for nest-cli

Recommend use pnpm

Get Started

Install dependencies:

pnpm install

Run dev

Run dev for src/main.ts:

pnpm dev

Run dev for src/modules/hello/main.ts:

pnpm nest start hello --watch

Run dev for src/modules/foo/main.ts:

pnpm nest start foo --watch

Run build

Build all:

pnpm tsdk --nest build all

Build default:

pnpm tsdk --nest build

Build foo and hello:

pnpm tsdk --nest build foo hello