{"id":20757147,"url":"https://github.com/dehsilvadeveloper/nestjs-notification","last_synced_at":"2026-04-13T04:37:30.130Z","repository":{"id":177646062,"uuid":"654751060","full_name":"dehsilvadeveloper/nestjs-notification","owner":"dehsilvadeveloper","description":"Uma API feita com NestJS e Prisma que simula um sistema de notificações, gerenciando informações de notificações por meio de endpoints, sem realmente enviá-las. O propósito é controlar o histórico das notificações, servindo como um projeto de refinamento de habilidades e demonstração de skills.","archived":false,"fork":false,"pushed_at":"2024-04-29T19:16:30.000Z","size":181,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-01-18T04:43:30.083Z","etag":null,"topics":["docker","javascript","nestjs","nestjs9","nodejs","prisma","sqlite","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/dehsilvadeveloper.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-06-16T21:32:50.000Z","updated_at":"2024-04-29T19:16:34.000Z","dependencies_parsed_at":null,"dependency_job_id":"9bc949e1-3aab-4d58-9178-b55266e76f76","html_url":"https://github.com/dehsilvadeveloper/nestjs-notification","commit_stats":null,"previous_names":["dehsilvadeveloper/nestjs-notification"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dehsilvadeveloper%2Fnestjs-notification","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dehsilvadeveloper%2Fnestjs-notification/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dehsilvadeveloper%2Fnestjs-notification/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dehsilvadeveloper%2Fnestjs-notification/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dehsilvadeveloper","download_url":"https://codeload.github.com/dehsilvadeveloper/nestjs-notification/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243066830,"owners_count":20230808,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["docker","javascript","nestjs","nestjs9","nodejs","prisma","sqlite","typescript"],"created_at":"2024-11-17T09:40:00.589Z","updated_at":"2025-12-26T04:06:23.651Z","avatar_url":"https://github.com/dehsilvadeveloper.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"http://nestjs.com/\" target=\"blank\"\u003e\u003cimg src=\"https://nestjs.com/img/logo_text.svg\" width=\"320\" alt=\"Nest Logo\" /\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n# NestJS Notification  🔥 🚀\n\nThis is a NestJS v9.x api to emulate a notification system, manipulating the notifications data through defined endpoints. No real notifications are dispatched, the application is just for controlling the notifications history.\n\nThe project was created for refinement of NestJS knowledge. It also work as a skills showcase.\n\n## Build with\n\n| Name       | Version  |\n| ---------- | -------- |\n| NestJs | v9.x |\n| NodeJs | v19.8.x + |\n| Typescript | v4.7.x + |\n| NPM | v9.5.x + |\n| Prisma | v4.15.x + |\n| Docker | v20.10.x |\n| Docker Compose | v3.8.x |\n| Redis | v6.2.x |\n| Mysql | v8.0.x |\n| Postgresql | v12.x |\n| MongoDB | v3.2.x |\n\n## Objectives\n\n* Use a Dockerized environment\n* Use concepts of Repository Pattern\n* Use concepts of SOLID\n* Use concepts of Clean Architecture\n* Use Prisma for database modelling and migration\n* Use Data Transfer Objects (DTOs) to transport groups of data between the application layers and to validate input data\n* Create tests for the application using JEST\n\n## Docs\n\n* [Getting Started](./docs/getting_started.md)\n* [Folder Structure](./docs/folder_structure.md)\n* [Api Versioning](./docs/api_versioning.md)\n* [About Prisma Schema](./docs/about_prisma_schema.md)\n* [CORS](./docs/cors.md)\n* [Available NPM Scripts](./docs/available_npm_scripts.md)\n* [Available Make Scripts](./docs/available_make_scripts.md)\n\n## Next Todo\n\nNext development actions\n\n* [X] Adjust dependencies import (tsconfig paths not working properly in jest tests)\n* [X] Implement mappers (from Prisma to Entity, from Entity to Prisma)\n* [X] Implement view models on the http layer\n* [X] Implement create notification flow (controller, use-case, etc)\n* [X] Implement cancel notification flow (controller, use-case, etc)\n* [X] Implement read notification flow (controller, use-case, etc)\n* [X] Implement unread notification flow (controller, use-case, etc)\n* [X] Implement recipient received notifications count flow (controller, use-case, etc)\n* [X] Implement recipient received notifications list flow (controller, use-case, etc)\n* [X] Implement list all notifications flow (controller, use-case, etc)\n* [X] Implement get specific notification flow (controller, use-case, etc)\n* [X] Adding api name and api version to the endpoints\n* [ ] Create and apply configurations files (Application, Api, Database, Redis)\n* [ ] Saving counter of sent notifications on Redis\n* [ ] Saving counter of read notifications on Redis\n* [ ] Adjust jest tests for better performance\n* [X] Implement health check route\n* [ ] Finish documentation\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdehsilvadeveloper%2Fnestjs-notification","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdehsilvadeveloper%2Fnestjs-notification","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdehsilvadeveloper%2Fnestjs-notification/lists"}