axios-cordova-adapter

An axios adapter using cordova-plugin-advanced-http


Keywords
axios, cordova, plugin, advanced, http, adapter
Licenses
NPOSL-3.0/Unlicense
Install
npm install axios-cordova-adapter@1.0.16

Documentation

axios-cordova-adapter

An axios adapter using cordova-plugin-advanced-http

Copyright Notice

© 2023 Wilson Foo Yu Kang. All rights reserved except as otherwise expressly provided in writing.

Licensed by Wilson Foo Yu Kang to the sole licensee Custom Automated Systems ® Pte Ltd on private and confidential terms which may be revoked with express written notice at any time at the sole and absolute discretion of Wilson Foo Yu Kang. By using and continuing to use this package, all parties agree that they are sub-licensing this package, including where this is pursuant to the LICENSE file containing herein, from Custom Automated Systems ® Pte Ltd and are not contracting directly with Wilson Foo Yu Kang, save that Wilson Foo Yu Kang shall be availed of all protections at law including all limitations of liability. Contact sales@customautosys.com for custom licensing terms.

Removal of this Copyright Notice is prohibited.

Installation

cordova plugin add cordova-plugin-advanced-http
[ npm i -D axios | npm i -S axios ]
[ npm i -D axios-cordova-adapter | npm i -S axios-cordova-adapter ]

Importing

import axiosCordovaAdapter from 'axios-cordova-adapter';

Functions

axiosCordovaAdapter(config:InternalAxiosRequestConfig):AxiosPromise

The axios cordova adapter function to pass into the axios call.

Usage

import axiosCordovaAdapter from 'axios-cordova-adapter';

axios.create({
	...
	adapter:axiosCordovaAdapter
	...
});

axios.request({
	...
	adapter:axiosCordovaAdapter
	...
});