Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript User Authentication With Express and Mongo Improving the App with Custom Middleware Review: Custom Content

Paul Milbank
Paul Milbank
6,445 Points

Why not use clearCookie() to remove express session?

I tried this without watching the video and it worked fine.

res.clearCookie('connect.sid')
res.redirect('/')

It removed the cookie containing the session and the site went back to a logged out state. After watching the video and implementing the session.destroy method, I then saw the question had the clearcookie() option listed as a wrong answer.

based on the video, I came up with this:

if (req.session) {
  req.session.destroy((err) => {
    if (err) {
      next(err)
    } else {
      res.clearCookie('connect.sid')
      res.redirect('/')
    }
  })
}

It clears the cookie after logout as well as destroying the session. Is this OK or is it going to cause some unforeseen consequences?