axios-axios/lib/core
2022-03-07 20:09:23 +02:00
..
Axios.js Adding baseURL to be used in getUri(), also removing question mark trimming since there seems to be no obvious reason for it. (#3737) 2022-03-07 20:09:23 +02:00
buildFullPath.js Do not modify config.url when using a relative baseURL (resolves #1628) (#2391) 2019-09-05 12:43:55 -03:00
createError.js Fixing typo in comment blocks of createError() and enhanceError() functions (#857) 2017-05-28 22:03:40 +02:00
dispatchRequest.js Release/v0.22.0 (#4107) 2021-10-01 08:02:13 +02:00
enhanceError.js Adding HTTP status code to error.toJSON (#2956) 2021-09-05 13:45:24 +02:00
InterceptorManager.js issue#2609 | Sasha | predictable axios requests (#2702) 2021-03-01 11:11:35 +02:00
mergeConfig.js Adding support for beforeRedirect config option (#3852) 2022-03-07 19:46:08 +02:00
README.md Updating lib/core/README.md about Dispatching requests (#3772) 2021-04-30 09:08:50 +02:00
settle.js Fixing getting local files (file://) failed (#2470) 2020-03-23 21:49:38 +08:00
transformData.js Refactored project file structure to avoid circular imports; (#4220) 2022-03-07 09:09:43 +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