mirror of
https://github.com/remotely-save/remotely-save.git
synced 2024-06-07 21:10:45 +00:00
26 lines
659 B
JavaScript
26 lines
659 B
JavaScript
// Importing the http module
|
|
const http = require("http");
|
|
|
|
const requestHandler = (req, res) => {
|
|
let body = [];
|
|
req
|
|
.on("data", (chunk) => {
|
|
body.push(chunk);
|
|
})
|
|
.on("end", () => {
|
|
const parsed = JSON.parse(Buffer.concat(body).toString());
|
|
const prettyParsed = JSON.stringify(parsed, null, 2);
|
|
console.log(prettyParsed);
|
|
res.setHeader("Content-Type", "application/json");
|
|
res.end(prettyParsed);
|
|
});
|
|
};
|
|
|
|
const server = http.createServer(requestHandler);
|
|
|
|
const addr = "0.0.0.0";
|
|
const port = 3000;
|
|
server.listen(port, addr, undefined, () => {
|
|
console.log(`Server is Running on ${addr}:${port}`);
|
|
});
|