Files
webServerTest/main.js
2025-08-18 21:40:07 +02:00

8 lines
157 B
JavaScript

async function press() {
const res = await fetch('http://localhost:3000/press', {
method: 'POST'
});
const data = await res.text();
alert(data);
}