Cannot GET / Nodejs Error

м с помощью учебника, найденного здесь:http://addyosmani.github.io/backbone-fundamentals/#create-a-simple-web-server и добавил следующий код.

// Module dependencies.
var application_root = __dirname,
express = require( 'express' ), //Web framework
path = require( 'path' ), //Utilities for dealing with file paths
mongoose = require( 'mongoose' ); //MongoDB integration

//Create server
var app = express();

// Configure server
app.configure( function() {
//parses request body and populates request.body
app.use( express.bodyParser() );

//checks request.body for HTTP method overrides
app.use( express.methodOverride() );

//perform route lookup based on url and HTTP method
app.use( app.router );

//Where to serve static content
app.use( express.static( path.join( application_root, 'site') ) );

//Show all errors in development
app.use( express.errorHandler({ dumpExceptions: true, showStack: true }));
});

//Start server
var port = 5000;
app.listen( port, function() {
console.log( 'Express server listening on port %d in %s mode', port, app.settings.env );
});

После запуска сервера с I 'node server.jsя получаю сообщение об ошибкеCannot GET / когда я получаю доступlocalhost:5000 и мне просто интересно, знает ли кто-нибудь много об этой ошибке, так как Express и Node являются новыми для меня?

Ответы на вопрос(3)

Ваш ответ на вопрос