axios-cookiejar-support

Add tough-cookie support to axios.

Github星跟踪图

axios-cookiejar-support

Add tough-cookie support to axios.


NPM
LICENSE
CircleCI

dependencies
peerdependencies
devdependencies

Install

$ npm i axios axios-cookiejar-support

-- OR --

$ npm i axios @3846masa/axios-cookiejar-support # Same as above

Usage

const axios = require('axios').default;
const axiosCookieJarSupport = require('axios-cookiejar-support').default;
const tough = require('tough-cookie');

axiosCookieJarSupport(axios);

const cookieJar = new tough.CookieJar();

axios
  .get('https://google.com', {
    jar: cookieJar, // tough.CookieJar or boolean
    withCredentials: true, // If true, send cookie stored in jar
  })
  .then(() => {
    console.log(cookieJar);
  });

See examples.

Notice: Set default cookiejar

axios@>=0.19.0 cannot assign defaults.jar via axios.create() before wrapping instance.
When you want to set defaults.jar, please set directly after wrapping instance.

const axios = require('axios').default;
const axiosCookieJarSupport = require('axios-cookiejar-support').default;
const tough = require('tough-cookie');

const instance = axios.create({
  // WARNING: This value will be ignored.
  jar: new tough.CookieJar(),
});

// Set directly after wrapping instance.
axiosCookieJarSupport(instance);
instance.defaults.jar = new tough.CookieJar();

Extended Request Config

c.f.) https://github.com/mzabriskie/axios#request-config

{
  // `jar` is tough.CookieJar instance or boolean.
  // If true, axios create CookieJar automatically.
  jar: undefined, // default

  // **IMPORTANT**
  // If false, axios DONOT send cookies from cookiejar.
  withCredentials: false // default
}

Browser

Running on browser, this library becomes noop (config.jar might be ignored).

Contribution

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request

LICENSE

MIT License

Author

3846masa icon
3846masa


Paypal.me (Onetime donate)

主要指标

概览
名称与所有者3846masa/axios-cookiejar-support
主编程语言TypeScript
编程语言JavaScript (语言数: 3)
平台
许可证MIT License
所有者活动
创建于2016-09-01 10:53:55
推送于2025-06-13 22:10:27
最后一次提交
发布数51
最新版本名称v6.0.2 (发布于 )
第一版名称v0.0.1 (发布于 )
用户参与
星数323
关注者数3
派生数57
提交数1k
已启用问题?
问题数71
打开的问题数1
拉请求数1220
打开的拉请求数1
关闭的拉请求数99
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?