Sutapa Biswassutto.hashnode.dev·Oct 17, 2024Let's Learn AuthenticationLet’s start with setting ‘cookie’ app.post("/login", (req, res) => { res.cookie("token", "mycookie"); res.redirect("/"); }) now, go to ‘inspect → application → Cookies , you can see the ‘token’ & ‘mycookie’ is written. Here, we can also add ...authenticationAdd a thoughtful commentNo comments yetBe the first to start the conversation.