Skip to content

Instantly share code, notes, and snippets.

@YutaWatanabe
Created September 14, 2014 01:41
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 YutaWatanabe/ef1c165d1d15ce492a45 to your computer and use it in GitHub Desktop.
Save YutaWatanabe/ef1c165d1d15ce492a45 to your computer and use it in GitHub Desktop.
Getting started with jade & express
var express = require('express');
var app = express();
app.set('view engine', 'jade');
app.set('views', './views')
app.get('/', function(req, res){
//res.send('Hello World');
res.render('index', { title: 'Express', message: 'Rendered by Jade'});
}).listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment