hestia/websvr.js

23 lines
748 B
JavaScript
Raw Normal View History

2022-12-19 18:07:36 +00:00
/* Pellet Stove Control Panel
* Web Configuration Server
* v0.0.0 by Skylar Grant
2022-12-20 02:55:50 +00:00
*
* TODOs:
* Implement Express to make it easier
* Add actual data into the responses
* Launching point: https://stackoverflow.com/questions/18831783/how-to-call-a-server-side-function-from-client-side-e-g-html-button-onclick-i
2022-12-19 18:07:36 +00:00
*/
2022-12-20 19:18:24 +00:00
const express = require('express');
const app = express();
2022-12-19 18:07:36 +00:00
const http = require('http');
2022-12-20 19:18:24 +00:00
const server = http.createServer(app);
2022-12-19 18:07:36 +00:00
const config = require('./config.json');
2022-12-20 19:18:24 +00:00
app.use(express.bodyParser());
app.post('/', (req, res) => {
if (config.debugMode) console.log(`[${(Date.now() - config.timestamps.procStart)/1000}] I: ${req.body}`);
res.send(200);
});
2022-12-19 18:07:36 +00:00
2022-12-20 19:18:24 +00:00
server.listen(config.web.port, config.web.ip);