Skip to content

Instantly share code, notes, and snippets.

@petrosDemetrakopoulos
Created January 19, 2021 08:12
Show Gist options
  • Save petrosDemetrakopoulos/dda294d985493da36cef3e9700c814d3 to your computer and use it in GitHub Desktop.
Save petrosDemetrakopoulos/dda294d985493da36cef3e9700c814d3 to your computer and use it in GitHub Desktop.
var csrf = require('csurf');
var app = express();
app.use(csrf());
app.use(function(req, res, next) {
res.locals._csrf = req.csrfToken();
next();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment