From de40a4e042a7ec040a6ea9f013fa7ec4d18c6cd1 Mon Sep 17 00:00:00 2001 From: jkaplon Date: Thu, 18 Feb 2016 17:38:31 -0500 Subject: [PATCH] Clean up comments. --- server.js | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/server.js b/server.js index 3620cc4..7b5093b 100644 --- a/server.js +++ b/server.js @@ -15,26 +15,16 @@ app.engine('hbs', hbs.express4({ })); app.set('view engine', 'hbs'); app.set('views', __dirname + '/views'); -//app.use('/lib', express.static('lib')); // these 3 seem hacky, but doing it here instead of view. -//app.use('/keymap', express.static('keymap')); -//app.use('/mode', express.static('mode')); app.use(express.static('codemirror')); var notePath = __dirname + '/note-data/allNotes.txt'; app.get('/', function(req, res){ winston.info("GET /"); - // Get curent text from allNotes.txt. - // How to pass that text into index.html editor control??? Still need Handlebars??? - // i may be grokking it...need to keep handlebars, though. - // read contents of allNotes.txt into a variable. - // pass that variable as data to handlebars template, {{notetxt}}. + // Get curent text from allNotes.txt and pass that data to handlebars template. fileSystem.readFile(notePath, {encoding: 'utf-8'}, function(err,data){ if (!err){ winston.info('successful file read'); - //response.writeHead(200, {'Content-Type': 'text/html'}); - //response.write(data); - //response.end(); res.render('index', {notetxt: data}, function(err, html) { if(err !== null) { winston.error(err);