let url = 'http://localhost:8000'; fetch(url) .then(res => res.json()) .then(out => console.log('JSON', out.products.items)) .catch(err => console.error(err));