Skip to content
This repository has been archived by the owner on Mar 2, 2024. It is now read-only.

Latest commit

 

History

History
14 lines (9 loc) · 343 Bytes

readme.md

File metadata and controls

14 lines (9 loc) · 343 Bytes

axios-method-override

Lets you use HTTP PATCH, PUT and DELETE in by mimicking the HTTP method with a _method query parameter, and an X-HTTP-Method-Override header.

Usage

import axiosMethodOverride from 'axios-method-override';

axiosMethodOverride(axios);

const instance = axios.create();
axiosMethodOverride(instance);