How to fetch data from a REST API in Typescript using Axios
Oct 10, 2022 · 6 min read · Introdution In plain javascript, making a get request with Axios to an API is straightforward all you need to do is: const axios = require('axios').default; // Make a request for a user with a given ID axios.get('/user?ID=12345') .then(function (r...
JEmmanuel commented

