pure pipe to fecth data
const fetchData = (): any => { fetch('https://api.github.com/users/thangngoc89').then(response => { return response.json(); }) .then(data => { console.log(data); return data; }) .catch(error => { console.log(error); return error; }); } fetchData();