Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

User:BakiDance/common.js: Difference between revisions

(Blanked the page)
Tag: Blanking
No edit summary
Line 1: Line 1:
 
const url = 'http://www.cubey.rocks:8989/v1/ping';
fetch(url)
.then(data => data.json())
.then((json) => {
    alert(JSON.stringify(json));
})

Revision as of 20:13, 13 October 2023

const url = 'http://www.cubey.rocks:8989/v1/ping';
fetch(url)
.then(data => data.json())
.then((json) => {
    alert(JSON.stringify(json));
})