Импорт Axios
The correct way to import axios copied from the docs is:
const axios = require('axios').default;
Muddy Mongoose
The correct way to import axios copied from the docs is:
const axios = require('axios').default;
axios.post('https:sample-endpoint.com/user', {
Name: 'Fred',
Age: '23'
})
.then(function (response) {
console.log(response);
})