Skip to content

Latest commit

 

History

History
34 lines (21 loc) · 650 Bytes

README.md

File metadata and controls

34 lines (21 loc) · 650 Bytes

NestJS RESTful API

Description

An introduction to RESTful APIs with NestJS. NestJS is used to build an API that implements CRUD functionality for blog posts.

Installation

$ npm install

Running the app

# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod

Using the app

When the app is run locally, it is available at http://localhost:3000.

OpenAPI (Swagger)

OpenAPI specification is a language-agnostic definition format used to describe RESTful APIs.

When running the project locally, visit http://localhost:3000/api to access the Swagger UI.