little man

This commit is contained in:
2013-02-12 08:43:15 -05:00
parent 55aec24710
commit eb6b08b233
24 changed files with 4215 additions and 0 deletions

11
routes/404.js Normal file
View File

@@ -0,0 +1,11 @@
//404 catch all
module.exports = function(app) {
//The 404 Route (ALWAYS Keep this as the last route)
app.get('*', function(req, res){
console.log("oook 404 " + req );
res.send('Not Found', 404);
});
};