Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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