console.log("starting"); 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("hello world"); console.log(res); location.reload(); }) .catch((err) => ("Error occured", err)); var socket = io(); form.addEventListener("submit", function (e) { e.preventDefault(); if (input.value) { socket.emit("chat message", input.value); input.value = ""; } });