addyosmani / backbone-boilerplates

Backbone.js stack boilerplates demonstrating integration with Express, Ruby, PHP, Grails and more.
http://addyosmani.com
488 stars 177 forks source link

500 Error: Cannot find module 'undefined' #17

Open 42thcoder opened 11 years ago

42thcoder commented 11 years ago

Thanks for your example. It really helps.

There is an issue here. When I try to run option1, there is an error "500 Error: Cannot find module 'undefined'".

After I repalce the code in app.js

app.get('/todo', function(req, res){
  res.render('todo', {title: "MongoDB Backed TODO App"});
});

with code like this

app.get('/todo', function(req, res){
    res.sendfile(__dirname + '/public/static.html');
});

It works just fine. Why? If it's an bug, would you fix it?