最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How to set HttpOnly flag In Node.js ,Express.js application? - Stack Overflow

programmeradmin0浏览0评论

Hi I have a project in node.js and I want to set the HttpOnly flag: true for header response.

I have written the following code in app.js but it make no effect in response header .

app.use(session({
 secret: "notagoodsecretnoreallydontusethisone",
 resave: false,
 saveUninitialized: true,
 cookie: {httpOnly: true, secure: true}
}));

So any suggestion for setting HttpOnly Flag in express.js is most wele.

Hi I have a project in node.js and I want to set the HttpOnly flag: true for header response.

I have written the following code in app.js but it make no effect in response header .

app.use(session({
 secret: "notagoodsecretnoreallydontusethisone",
 resave: false,
 saveUninitialized: true,
 cookie: {httpOnly: true, secure: true}
}));

So any suggestion for setting HttpOnly Flag in express.js is most wele.

Share Improve this question edited Nov 23, 2015 at 14:13 MSU_Bulldog 3,5196 gold badges39 silver badges76 bronze badges asked Nov 23, 2015 at 14:03 arjun koriarjun kori 1,1202 gold badges15 silver badges33 bronze badges 12
  • If you want to set it true, why is your code explicitly setting it to false? – Quentin Commented Nov 23, 2015 at 14:04
  • sorry mistake was there ,i just edited – arjun kori Commented Nov 23, 2015 at 14:06
  • I am using this same code but this has no effect .. – arjun kori Commented Nov 23, 2015 at 14:06
  • 1 Which version of Express and Express Session middleware are you using? – nikc Commented Nov 23, 2015 at 14:07
  • both has version of 1.4.28 – arjun kori Commented Nov 23, 2015 at 14:10
 |  Show 7 more ments

2 Answers 2

Reset to default 8

I think you could try this!

app.use(session({
   cookieName: 'sessionName',
   secret: "notagoodsecretnoreallydontusethisone",
   resave: false,
   saveUninitialized: true,
   httpOnly: true,  // dont let browser javascript access cookie ever
   secure: true, // only use cookie over https
   ephemeral: true // delete this cookie while browser close
}));

This example uses cookie-parser library.

Setting a cookie: res.cookie("cookie_name", token, {})

Pass res.cookie() an options object with httpOnly: true,

 const options = {
    expires: duration,
    httpOnly: true,
  };

Final e.g.

res.cookie("cookie_name", token, options)
  • https://www.npmjs./package/cookie-parser
  • https://expressjs./en/resources/middleware/cookie-parser.html
发布评论

评论列表(0)

  1. 暂无评论