Nestjs: Difference between revisions

From AWVVO
Jump to navigationJump to search
Created page with "<syntaxhighlight lang="bash" line="1" copy> copy code </syntaxhighlight>"
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
<syntaxhighlight lang="bash" line="1" copy>
= Installation =
copy code
<syntaxhighlight lang="bash" copy>
npm i -g @nestjs/cli
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/