Skip to content

Instantly share code, notes, and snippets.

@torgeir
Created June 12, 2010 15:01
Show Gist options
  • Save torgeir/435798 to your computer and use it in GitHub Desktop.
Save torgeir/435798 to your computer and use it in GitHub Desktop.
t.js
var t = require('./t');
t.app(8888, {
routes: {
'^/$': function(req, res) {
t.respond("something something");
},
'^/test/$': function() {
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment