Skip to content

Instantly share code, notes, and snippets.

@jshawl
Created May 19, 2015 14:56
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 jshawl/416a5b6a4242c69e102c to your computer and use it in GitHub Desktop.
Save jshawl/416a5b6a4242c69e102c to your computer and use it in GitHub Desktop.
var express = require("express")
var app = express()
app.get("/", function( req, res ){
res.send("Hello world! <a href='/jesse'>Say Hi to Jesse</a>")
})
app.get("/:name", function( req, res ){
res.send("Hello "+ req.params.name +"!")
})
app.listen(3000, function(){
console.log("app listening at http://localhost:3000/")
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment