8 lines
157 B
JavaScript
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);
|
|
}
|