Base project in nest js with hexagonal architecture for nodejs
- Matías Capuano
- Darío Govergun
- Edgar Lovera
- Mariano Filipoff
- Gonzalo Patricio Telesio
Pre requirements : Make sure you have already installed both Docker Engine and Docker Compose.
npm run install:docker:developnpm run start:docker:developnpm run testPre requirements : It is necessary to have the project running to be able to raise the swagger
To be able to see the swagger with all the api documentation enter the path
<BASE_URL>/api/docsJavascript
- NestJS
- Jest
The difference between
src/<module>/app/http/api/<module>.service.tsand
src/<module>/domain/services/<module>.service.tsare the domain's own business rules while the others are tied with the necessary logic in the api that escapes the domain.