Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fcbento/nodejs-fastify-knex-sqlite-render
Crud to practice Node.js using TypeScript, Fastify for web framework, query builder using Knex, Sqlite/PostgreSQL for data storage and hosting on Render
https://github.com/fcbento/nodejs-fastify-knex-sqlite-render
fastify knex nodejs postgres render sqlite typescript
Last synced: about 1 month ago
JSON representation
Crud to practice Node.js using TypeScript, Fastify for web framework, query builder using Knex, Sqlite/PostgreSQL for data storage and hosting on Render
- Host: GitHub
- URL: https://github.com/fcbento/nodejs-fastify-knex-sqlite-render
- Owner: fcbento
- Created: 2024-11-23T03:48:38.000Z (about 1 month ago)
- Default Branch: main
- Last Pushed: 2024-11-23T19:48:56.000Z (about 1 month ago)
- Last Synced: 2024-11-23T20:29:32.906Z (about 1 month ago)
- Topics: fastify, knex, nodejs, postgres, render, sqlite, typescript
- Language: TypeScript
- Homepage:
- Size: 80.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Business rules
- [x] Should be able to create a new user
- [x] Should list all users
- [x] Should be able to idenfity user among requesitions- [x] Should be able to register a meal with the following info
*Meals should be related to a user*
- Name
- Description
- Date
- On a diet// boolean- [ ] Should be able to edit a meal
- [ ] Should be able to delete a meal
- [ ] Should be able to list all meals from a user
- [ ] Should be able to see a single meal
- [ ] Should be able to retrieve users metrics
- [ ] Total quantity registered meals
- [ ] Total quantity meals on diet
- [ ] Total quantity meals out of diet
- [ ] Best sequence of meals on the diet
- [ ] Should make it possible to see to edit or delete meals that the user themselves created