Skip to content

Instantly share code, notes, and snippets.

@elliotf
Last active November 28, 2023 19:20
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • 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