Question App in Nodejs, Pug,cookie-parser, setting cookies 5

Channel:
Subscribers:
8,020
Published on ● Video Link: https://www.youtube.com/watch?v=E5R-8vItkNM



Duration: 6:26
273 views
8


In this lesson we are learning about cookies and how we can use them to remember our state within our app. We learn that the http protocol is a stateless protocol which means the client and the server do not remember the states of each new request. We learn that one of the ways around this is using cookies to store state. We add a cookies using res.cookie() and provided a name and value withing the parameters. We use res.cookie("username", req.body.username) to store the username entered into our form into a cookie we can access using the name "username". We then access the cookie if it exist using req.cookies.username.




Other Videos By We Will Code


2018-08-31freeCodeCamp's Adjust the Width of an Element Using the Width Property
2018-08-31freeCodeCamp's Create Visual Balance Using The Text-align Property, Applied Visual Design
2018-08-30freeCodeCamp's Intro to the Applied Visual Design Challenges
2018-08-21freeCodeCamp Basic CSS, Use Hex and RGB to Mix Colors, CSS Variables, & Style Fallbacks 6
2018-08-14freeCodeCamp Basic CSS,Clockwise Notation for Padding & Margin, CSS Precedence Specificity 5
2018-08-07freeCodeCamp Basic CSS, Size Images, Setting Id's, Margins, Paddings, & Borders 4
2018-08-02freeCodeCamp Basic CSS, Change Element Colors,Class Selector, Font Degradation 3
2018-07-20freeCodeCamp Basic HTML5 Nest an Anchor - Head and Body of HTML Doc 2
2018-07-18freeCodeCamp Basic HTML Tutorial Say Hello - Link to Internal Sections w Anchor Elements 1
2018-07-12Question App in Nodejs, Pug,Redirects and Cookie Practice
2018-07-09Question App in Nodejs, Pug,cookie-parser, setting cookies 5
2018-06-29Question App in Nodejs, Pug, Body-Parser Parsing Form Data 4
2018-06-27Question App in Nodejs, Pug, Express, Include Partials 3
2018-06-26Question App in Nodejs, Pug, Express, Rendering Response 2
2018-06-25Question App in Nodejs, Express, Flash Card App with Pug Templating
2018-06-22Codecademy's Learn Express, Matching Longer Paths, ExpressJS
2018-06-21Codecademy's Learn Express, Setting Status Codes
2018-06-19Codecademy's Learn Express, Getting a Single Expression
2018-06-18Codecademy's Learn Express, Matching Route Paths, Understanding Express JS
2018-06-15Codecademy's Learn Express, Sending a Response, Nodejs Backend
2018-06-14Codecademy's Learn Express, Writing Your First Route



Tags:
cookie-parser
res.cookie
req.cookies
express cookies
cookies with express
setting cookies