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