- Express
- Postgresql
- JWT
- MVC Design
- Javascript
- Typescript
- Prisma
Learning about authorization process, acessing an real database, using table relations and understanding why an ORM such as prisma and Typescript would help the development.
PG uses pure sql queries and i see this as an important step to use the relational database with mastery (uderstanding the sql cmds), even if its weak on sqli
(Refactor update) - Prisma is being used to manage the database
When i started the project i decided not to use Typescript, the reason is i wanted to understand why Typescript would make the development faster, decided to face pure Javacript
(Refactor update) - Typescript!
I actually understand a bit of frontend but my ability with frontend is not deep enough yet, at some point i want to dive in frontend to become a fullstack developer, but even when i get a good understanding i will not update older projects, because i want to show the progress on learning each technology
(Refactor update) - CSS was added to the project!
- Docker
- Mongo
- Typescript
- Prisma
Although i did not use an ORM for Postgres in this project i already have an base on how it works and i do not want to use only relational dbs, so my next project for sure will use mongo and then Postgres with an ORM
- Authorization process with JWT
- Password hashing
- MVC design
- Express
- Importance of Middlewares
- Logging status is important
- Organization helps a lot
- More about making a readable code
- More about table relations
- Cookie is an good practice for storing JWT
- Dates
- More about Asynchronous
- Better thinking on problem solving
- Pg fail in sqli
There are just two tables: users and posts
users fields:
- id; Stores user's id
- first_name; Stores user's first name
- last_name; Stores user's last name
- username; Stores user's username
- email; Stores user's email
- refresh_token; Stores user's refresh token
- password; Stores user's password
posts fields:
- id; Stores post's id
- post_name; Stores post's name
- post_content; Stores post's content
- owner; Stores the id of the owner (Foreign key)
- post_timestamp; Stores post's timestamp
-
POST /api/login Logs user and stores a JWT on cookie
-
POST /api/signup Creates a user on the database
-
POST /api/createPost Creates a post
-
GET /api/userData/:id Responds with a json containing user's info (accepts id for another user's info)
-
GET /api/userPosts/:id Responds with a json containing the posts of the user (accepts id for another user's posts)
-
GET /api/feedPosts Responds with a json containing all posts
-
PUT /api/logout Updates the user's refresh_token field and redirects
-
DELETE /api/deletePost/:id Deletes the target post
-
DELETE /api/deleteUser Deletes the current user