axios min js code example

Example 1: axios cdn

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

Example 2: AXIOS CDN

<script src="https://unpkg.com/axios/dist/axios.min.js"></script>

Example 3: axios response.json

const axios = require('axios');

const res = await axios.get('https://httpbin.org/get', { params: { answer: 42 } });

res.constructor.name; // 'Object', means `res` is a POJO

// `res.data` contains the parsed response body
res.data; // { args: { answer: 42 }, ... }
res.data instanceof Object; // true

Tags:

Misc Example