TutorialesJavaScript / amazing-microservices-with-nestjs

Example of microservices built with NestJS

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Amazing Microservices with NestJS

Example of microservices built with NestJS

Quick Start

Just open each service and execute the following:

npm i && npm run start:dev

Requests

Get accounts

curl http://localhost:3000/accounts | jq

Create account

curl -X POST http:/localhost:3000/accounts \
  -H "accept: application/json" -H "Content-Type: application/json" \
  --data '{"id": "3", "login": "jack", "name": "Jack"}' -i

About

Example of microservices built with NestJS


Languages

Language:TypeScript 82.3%Language:JavaScript 17.7%