Scalable IoT solution for real-time body position data
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.
 
 
 
 
 

12 lines
317 B

const app = require('express')()
const server = require('http').createServer(app);
const chalk = require('chalk')
require('./services/socket')(server);
const measurementRoute = require('./routes/data')
app.use(measurementRoute)
server.listen(6000);
console.log(chalk.green.bold('Server listening on port 6000!'));