Clanki/_media/example.js
2023-09-17 14:44:26 +02:00

17 lines
323 B
JavaScript

import fetch from 'fetch'
const URL = 'https://example.com'
const PORT = 8080
/// [demo]
const result = fetch(`${URL}:${PORT}`)
.then(function (response) {
return response.json()
})
.then(function (myJson) {
console.log(JSON.stringify(myJson))
})
/// [demo]
result.then(console.log).catch(console.error)