addyosmani / addyosmani/backbone-boilerplates
500 Error: Cannot find module 'undefined'
Ouverte
- Langage dominant
- JavaScript
- Étoiles
- 485
- Forks
- 165
- Métriques de merge des PR
- Aucune PR mergée en 30 j
Description
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
``` javascript
app.get('/todo', function(req, res){
res.render('todo', {title: "MongoDB Backed TODO App"});
});
```
with code like this
``` javascript
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?
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Évaluation
Cette issue n'a pas encore été évaluée.