Security

Cookies and Sessions in Node Express JS, Mongo DB APP

Sessions and cookies play a very important role in a web app. These are used to store information. Cookies are used to store information... Read more »

bcrypt – Password Hashing for Package for Node Apps

bcrypt is a node library that enables password hashing. So we ca securely store the password of our Node Express Mongo Apps. Install bcrypt... Read more »

md5 Password hashing in Node Mongo APp

md5 is a javascript function for hashing messages, passwords with MD5. Passwords are saved securely in the mongo db database by hashing the user... Read more »

Data Encryption in Express Mongo DB App

For the encryption and authentication for mongoose documents, we can use a package called mongoose-encryption. Refer: https://www.npmjs.com/package/mongoose-encryption Install mongoose-encryption package npm i mongoose-encryption Using mongoose-encrytption... Read more »