You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
571 B
JavaScript

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 = "";
}
});