Dmitriy Mozgovoy

Results 106 comments of Dmitriy Mozgovoy

> I am trying to open around 5600 URLs concurrently with a [throat](https://www.npmjs.com/package/throat) limiter limiting maximum concurrent requests to 5 at a time. @eXhumer Is there a possibility that you...

@eXhumer This seems to be exactly what you are doing. You have references to all the promises via array, and every promise keeps a reference to its value (response) after...

> Is there any other way to import the settle function? ```js const settle = require('axios/unsafe/core/settle.js'); ```

> the function hasStandardBrowserEnv is missing the original conditions typeof window !== 'undefined' && typeof document !== 'undefined'; This code is still there but refactored as [an external constant](https://github.com/axios/axios/blob/b3be36585884ba1e237fdd0eacf55f678aefc396/lib/platform/common/utils.js#L1)

> replacement: path.resolve( 'node_modules', 'axios/dist/esm/axios.js' ) // its a client esm bundle > browser: true, // ??? > Adapter Version: XHR I don't quite understand what you're trying to do....

I just tried it, and it seems pkg works normally when packaging the cjs bundle. ``` import resolve from "@rollup/plugin-node-resolve"; import commonjs from "@rollup/plugin-commonjs"; import json from "@rollup/plugin-json"; import typescript...

> Which outputs the following @nataliethistime Which version do you use? The following code ( https://codesandbox.io/p/devbox/f2zc8x ) ```js import axios, { AxiosHeaders } from "axios"; console.log(axios.VERSION); const res = new...

Can you make a successful authorization request with Postman? I suspect their Auth API should use `application/x-www-form-urlencoded` rather than `multipart/form-data` since the request does not contain binary data. ```js const...

@theVJagrawal Before starting work on a fix, it would be a good idea to make sure that the problem really exists in the current version and is not fixed in...

This is expected. The latest minor versions of the 0.x branch require additional polyfills for IE11, which nevertheless count as IE11 support. As the documentation mentions, minor versions prior to...