TechPrimers / nestjs-example

NestJS example to consume a Space API

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

NestJS example to consume a Space API


Languages

Language:TypeScript 87.7%Language:JavaScript 12.3%