22. Encrypting Passwords
password which is stored in database must not be in plain text for security purpose it must be stored in hashed or encrypted format
signup API is used to register users to database
app.post("/signup", async (req, res) => {
const user = new Use...
farazalam2017.hashnode.dev4 min read