axios-axios/lib/core
2021-09-04 20:55:38 +02:00
..
Axios.js Correctly add response interceptors to interceptor chain (#4013) 2021-09-04 20:55:38 +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 JSON improvements: throw if JSON parsing failed; number, boolean can be passed directly as payload for encoding to JSON #2613, #61, #907 (#3688) 2021-04-19 18:55:34 +02:00
enhanceError.js Fix merging of params (#2656) 2020-02-15 13:36:52 +08:00
InterceptorManager.js issue#2609 | Sasha | predictable axios requests (#2702) 2021-03-01 11:11:35 +02:00
mergeConfig.js Refactor mergeConfig without utils.deepMerge (#2844) 2020-06-08 20:52:45 +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 JSON improvements: throw if JSON parsing failed; number, boolean can be passed directly as payload for encoding to JSON #2613, #61, #907 (#3688) 2021-04-19 18:55:34 +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