bwscheddebrock_trassenplaner/test_post.js

11 lines
269 B
JavaScript

async function test() {
try {
const res = await fetch('http://localhost:3000/api/owners');
const json = await res.json();
console.log(JSON.stringify(json.features[0].properties, null, 2));
} catch (err) {
console.error("Error:", err);
}
}
test();