Last updated 2 months ago
Ping the server to check if it is running
Server is running
"pong"
const response = await fetch('/ping', { method: 'GET', headers: {}, }); const data = await response.json();
pong