0.0.7 • Published 9 months ago
create-nest-minimum v0.0.7
Create Nest Minimum Application
Why
nest new project-name is so complete, we may need a simple and lightweight application.
Scaffolding Your Nest Project
Compatibility Note: Nest requires Node.js version 20+.
With NPM:
npm create nest-minimum@latestWith Yarn:
yarn create nest-minimumWith PNPM:
pnpm create nest-minimumThen follow the prompts!
You can also directly specify the project name and the target directory handled method you want to use via additional command line options. run:
# npm 7+, extra double-dash is needed:
npm create nest-minimum@latest my-nest-app -- --overwrite
# yarn
yarn create nest-minimum my-nest-app --overwrite
# pnpm
pnpm create nest-minimum my-nest-app --overwrite