Skip to content

Latest commit

 

History

History
30 lines (27 loc) · 442 Bytes

README.md

File metadata and controls

30 lines (27 loc) · 442 Bytes

NestJS Example

Installation of Nest

npm install -g @nestjs/cli

Creating an app

nest new nestjs-example

Creating a controller

nest generate controller space

Creating a service

nest generate service space

Creating an interface

nest generate interface space/space
nest generate interface space/astros

Running the app

# development
npm run start:dev