Skip to content

Instantly share code, notes, and snippets.

@simonmcmanus
Last active December 17, 2015 21:49
Show Gist options
  • Save simonmcmanus/5677498 to your computer and use it in GitHub Desktop.
Save simonmcmanus/5677498 to your computer and use it in GitHub Desktop.
simple render example
var app = require('express').createServer();
app.get('/', function(req, res){
res.send('hello world');
});
app.get('/:name', function(req, res){
res.send('hello ' + req.param.name);
});
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment