EN
Express.js - add cookie
0 points
In this short article, we would like to add cookie in Express.js.
1. Install cookie-parser
package:
xxxxxxxxxx
1
npm install cookie-parser
2. Use response.cookie()
method to add cookies with specified cookie name and value.
In this example, we use response.cookie()
method to create username
cookie wich stores john
value.
xxxxxxxxxx
1
const express = require('express')
2
const cookieParser = require('cookie-parser')
3
4
const app = express()
5
6
app.use(cookieParser())
7
8
app.get('/', (request, response){
9
response.cookie('username', 'john').send('Cookie set'); // username=john
10
});
11
12
app.listen(3000);
After running the code and entering localhost:3000
, we will see the window below.
