Skip to content

Instantly share code, notes, and snippets.

@ppulwey
Last active September 9, 2022 10:23
Show Gist options
  • Save ppulwey/af3128e0429f55d0d5fca359f9d59308 to your computer and use it in GitHub Desktop.
Save ppulwey/af3128e0429f55d0d5fca359f9d59308 to your computer and use it in GitHub Desktop.
router.post(
'/',
(req: Request, res: Response, next: NextFunction) => {
res
.cookie('cookieOne', 'value1')
.cookie('cookieTwo', 'value2')
.json({ data:'hello!' });
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment