https://github.com/victorsouza19/form-validation
Simple project to understand better about server-side form validations.
https://github.com/victorsouza19/form-validation
cookie-parser ejs express-flash express-session nodejs
Last synced: 3 months ago
JSON representation
Simple project to understand better about server-side form validations.
- Host: GitHub
- URL: https://github.com/victorsouza19/form-validation
- Owner: victorsouza19
- Created: 2021-11-10T02:46:29.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-11-11T02:17:43.000Z (over 3 years ago)
- Last Synced: 2025-01-29T17:44:46.297Z (5 months ago)
- Topics: cookie-parser, ejs, express-flash, express-session, nodejs
- Language: JavaScript
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hi there :wave:
This is a simple study repository to understand some metrics about form validations and something about good practices of input verifications.
In this study, we used these dependencies for the form validation:
* Express-sessions: It's to create sessions.
* Express-flash: We use this library to send data into a session, like error messages.
* Cookie-parser: We need this to parse the data for the cookie on user's browser.In the future, i plan to analyse the **validator.js** dependency too, for apply in this study.