Skip to content

Instantly share code, notes, and snippets.

@conanak99
Last active September 5, 2017 13:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save conanak99/760bc19a93aec1c900762dd42c333f1a to your computer and use it in GitHub Desktop.
Save conanak99/760bc19a93aec1c900762dd42c333f1a to your computer and use it in GitHub Desktop.
app.get("/", function (request, response) {
if (!request.cookies.id) {
const randomId = idGenerator.getRandomId();
response.cookie('id', randomId , { maxAge: 30*24*3600*1000 } ); // Cookie 30 ngày
}
response.sendFile(__dirname + '/views/index.html');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment