Skip to content

Instantly share code, notes, and snippets.

@SidneyAllen
Last active September 22, 2021 03:59
Show Gist options
  • Save SidneyAllen/ce2b93e62001975de81e23012af85910 to your computer and use it in GitHub Desktop.
Save SidneyAllen/ce2b93e62001975de81e23012af85910 to your computer and use it in GitHub Desktop.
av-bulk-11-setup-express-app
// Set up static files folder and the HTML engine
app.use(express.static(path.join(__dirname, 'public')));
app.engine('html', require('ejs').renderFile);
app.set('view engine', 'html');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment