diff options
Diffstat (limited to 'vnext/server/index.js')
-rw-r--r-- | vnext/server/index.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/vnext/server/index.js b/vnext/server/index.js index d393c4bc..95f88cd1 100644 --- a/vnext/server/index.js +++ b/vnext/server/index.js @@ -2,7 +2,8 @@ import express from 'express'; import { raw } from 'body-parser'; import cors from 'cors'; import config from 'config'; -var debug = require('debug')('http'); +import debug from 'debug'; +const log = debug('http'); // we'll talk about this in a minute: import serverRenderer from './middleware/renderer'; @@ -11,7 +12,7 @@ import oembed from './middleware/oembed'; import urlExpand from './middleware/urlexpand'; const PORT = 8081; -const path = require('path'); +import path from 'path'; // initialize the application and create the routes const app = express(); @@ -42,5 +43,5 @@ app.listen(PORT, (error) => { return console.log('something bad happened', error); } - debug('listening on ' + PORT + '...'); + log('listening on ' + PORT + '...'); }); |