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