Nestjs: Difference between revisions

From AWVVO
Jump to navigationJump to search
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 2: Line 2:
<syntaxhighlight lang="bash" copy>
<syntaxhighlight lang="bash" copy>
npm i -g @nestjs/cli
npm i -g @nestjs/cli
nest new project-name
nest new myapp [--language js]
 
cd myapp
npm run start
</syntaxhighlight>
</syntaxhighlight>
Navigate to http://localhost:3000/

Latest revision as of 06:26, 18 January 2025

Installation

npm i -g @nestjs/cli
nest new myapp [--language js]

cd myapp
npm run start

Navigate to http://localhost:3000/