Skip to content

Instantly share code, notes, and snippets.

@ianaya89
Created December 20, 2016 03:06
Show Gist options
  • Save ianaya89/47968a595390812679875dbe1651e396 to your computer and use it in GitHub Desktop.
Save ianaya89/47968a595390812679875dbe1651e396 to your computer and use it in GitHub Desktop.
// Asumiendo que tengo instalado el modulo pug => npm install pug --save
app.set('view engine', 'pug');
app.get('/', (req, res) => {
res.render('index', { title: 'Hey', message: 'Hello there!' });
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment