import * as ws from './lib/ws.js'; import * as db from './lib/db.js'; let myDb = db.init(process.env.MONGO_CONN_STR) .then(dbFuncs => { ws.init({ port: process.env.WEB_SOCKET_PORT }, dbFuncs); });