# Notes

# Semver

Until axios reaches a 1.0 release, breaking changes will be released with a new minor version. For example 0.5.1, and 0.5.4 will have the same API, but 0.6.0 will have breaking changes.

# Promises

axios depends on a native ES6 Promise implementation to be supported (opens new window). If your environment doesn't support ES6 Promises, you can polyfill (opens new window).

# TypeScript

axios includes TypeScript (opens new window) definitions.

import axios from 'axios';
axios.get('/user?ID=12345');

# Resources

# Credits

axios is heavily inspired by the $http service (opens new window) provided in Angular (opens new window). Ultimately axios is an effort to provide a standalone $http-like service for use outside of Angular.

# License

MIT (opens new window)

Last Updated: 6/17/2023, 6:57:19 PM