Ping the server for liveness
GET
/heartbeat
const url = 'http://localhost:8080/heartbeat';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8080/heartbeatResponses
Section titled “ Responses ”OK
string
Example
.