Networks
Axios

Axios

Axios is a promise based HTTP client for the browser and JavaScript. It is a very popular library for making HTTP requests and is used in many projects.

Typescript

const getPosts = async () => {
  const { data } = await axios.get<Posts>('/url');
  return data;
}