0.0.7 • Published 4 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@latest
With Yarn:
yarn create nest-minimum
With PNPM:
pnpm create nest-minimum
Then 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