./server.js:334152/7
@ -12,7 +12,7 @@ var app = express();
app.use(express.static('public'));
// http://expressjs.com/en/starter/basic-routing.html
app.get("/", function (request, response) {
app.get('/', function(request, response) {
response.sendFile(__dirname + '/views/index.html');
});