axios-axios/lib/core
2025-04-23 19:24:08 +03:00
..
Axios.js fix(core): fix the Axios constructor implementation to treat the config argument as optional; (#6881) 2025-04-18 02:22:31 +03:00
AxiosError.js fix(core): add the missed implementation of AxiosError#status property; (#6573) 2024-08-23 15:58:38 +03:00
AxiosHeaders.js fix(headers): fixed support for setting multiple header values from an iterated source; (#6885) 2025-04-23 19:24:08 +03:00
buildFullPath.js fix(buildFullPath): handle allowAbsoluteUrls: false without baseURL (#6833) 2025-03-18 20:01:37 +02:00
dispatchRequest.js fix: include config on new CancelledError (#4922) 2022-11-25 15:46:49 +02:00
InterceptorManager.js Axios ES2017 (#4787) 2022-06-18 11:19:27 +02:00
mergeConfig.js fix(core): fixed config merging bug (#6668) 2024-10-30 23:39:55 +02:00
README.md Updating lib/core/README.md about Dispatching requests (#3772) 2021-04-30 09:08:50 +02:00
settle.js Axios ES2017 (#4787) 2022-06-18 11:19:27 +02:00
transformData.js Axios ES2017 (#4787) 2022-06-18 11:19:27 +02:00

axios // core

The modules found in core/ should be modules that are specific to the domain logic of axios. These modules would most likely not make sense to be consumed outside of the axios module, as their logic is too specific. Some examples of core modules are:

  • Dispatching requests
    • Requests sent via adapters/ (see lib/adapters/README.md)
  • Managing interceptors
  • Handling config