Skip to content

Instantly share code, notes, and snippets.

@elliotf
Last active December 10, 2024 14:16
Show Gist options
  • Save elliotf/5826944 to your computer and use it in GitHub Desktop.
Save elliotf/5826944 to your computer and use it in GitHub Desktop.
/*
to run:
echo '{}' > package.json
npm install --save express
node wildcard.js
*/
var express = require('express')
, http = require('http')
;
var app = express();
app.get(/^(.*)$/, function(req, res, next){
res.send(req.params[0]);
});
http.createServer(app).listen(1234, function() {
console.log("Listening on port 1234");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment