You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
316 B
11 lines
316 B
'use strict'
|
|
|
|
const fs = require('fs')
|
|
|
|
const Server = require('./server')
|
|
const configurationFile = process.argv[2]
|
|
const fileContents = fs.readFileSync(configurationFile, 'utf-8')
|
|
fs.unlink(configurationFile, function () {})
|
|
const data = JSON.parse(fileContents)
|
|
const server = new Server(data)
|
|
server.start(data)
|