remove unneeded packages, fix non-media file copy

This commit is contained in:
anarch3 2022-11-17 05:29:16 -05:00
parent f331684140
commit aca85d09ac
7 changed files with 17 additions and 556 deletions

View file

@ -5,7 +5,6 @@
*/
var app = require('../app');
var debug = require('debug')('todos:server');
var http = require('http');
/**
@ -86,5 +85,5 @@ function onListening() {
var bind = typeof addr === 'string'
? 'pipe ' + addr
: 'port ' + addr.port;
debug('Listening on ' + bind);
console.log('Listening on ' + bind);
}