hestia/websvr.js

25 lines
772 B
JavaScript

/* Pellet Stove Control Panel
* Web Configuration Server
* v0.0.0 by Skylar Grant
*
* 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
*/
const http = require('http');
const host = 'localhost';
const port = 8080;
const config = require('./config.json');
const requestListener = (req, res) => {
res.writeHead(200);
res.end('PSControlPanel Web Server')
};
const server = http.createServer(requestListener);
server.listen(port, host, () => {
if (config.debugMode) console.log(`[${(Date.now() - config.timestamps.procStart)/1000}] I: Started web config portal.`);
})