azat-co / expressworks

Learn Express.js from the author of one of the best books on Express.js—Pro Express.js— with this workshop that will teach you basics of Express.js.
MIT License
709 stars 220 forks source link

Hello World Fails #67

Closed cflanagan closed 9 years ago

cflanagan commented 9 years ago

The sample code for Hello World! is incorrect. The app.get statement directs uses to write: app.get('/', function(){...})

when the correct answer is app.get('/home', function(){...});

azat-co commented 9 years ago

@cflanagan everything is correct, '/' is a hint not the answer otherwise what is the point of giving a student the answer and only asking him/her to copy/paste? use hint only if you can't solve the question and use it as an example, not as the direct answer