axios-axios/lib/core
Hirotaka Tagawa / wafuwafu13 95792908f0
Adding error handling when missing url (#3791)
* Fixing error message when missing url

* Fixing missing url

* Adding missing url case

* Update Axios.js

* Update requests.spec.js

* Update api.spec.js

* Update api.spec.js

* Update api.spec.js

Co-authored-by: Jay <jasonsaayman@gmail.com>
2021-12-23 10:53:40 +02:00
..
Axios.js Adding error handling when missing url (#3791) 2021-12-23 10:53:40 +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 Release/v0.22.0 (#4107) 2021-10-01 08:02:13 +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