[APP][Pro] Simple (Sys) LOG - Use this app for Simple (Sys) Logging

It’s not a real table, but a readable start :upside_down_face:

// define url
const url = "http://192.168.1.223/api/app/nl.nielsdeklerk.log/";
// get data
let data = await fetch(url);
// make it json
data = await data.json();
// display data
console.log(data);

Found the code by searching here for ‘fetch url’

1 Like