// var socket = io(); // socket.on("test", (s) => { // console.log(s); // }); window.addEventListener("load", function () { fetch("http://localhost:3000/flasher/getProjects", { method: "POST", body: "body", headers: { // "Content-Type": "multipart/form-data", // "content-type": "text/html; charset=utf-8", }, }) .then(function (res) { console.log(res); }) .catch((err) => ("Error occured", err)); }); // form.addEventListener("submit", function (e) { // e.preventDefault(); // if (input.value) { // socket.emit("chat message", input.value); // input.value = ""; // } // });