Security
OAuth 2.0 is a very useful authorization service that provides authorization for web, mobile and desktop apps. Using OAuth we can easily implement the...
Read more »
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 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 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 »
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 »