summaryrefslogtreecommitdiffstats
path: root/backend/src/index.js
blob: a37e1f7cb4922cfccdc2c26b1b984541a32a5b6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
const createServer = require('./createServer');

const server = createServer();

server.start({ port: 4444 }, deets => {
  console.log(`Server is running on http://localhost:${deets.port}`);
});

// overwrite console.log
const chalk = require('chalk');

// global.console.l = (...butta) => console.log(chalk.bold.yellow(...butta));
global.console.l = console.log;