Skip to content

Instantly share code, notes, and snippets.

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 miyamotodev123/7869344cb6b7f58cfa1d to your computer and use it in GitHub Desktop.
Save miyamotodev123/7869344cb6b7f58cfa1d to your computer and use it in GitHub Desktop.
// server.js
...
var session = require('express-session');
var path = require('path'); // add path into our required list
...
app.use(passport.session()); // persistent login sessions
app.use(express.static(path.join(__dirname, '/public'))); //Expose /public
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment