@nelreina/web-api
v3.2.0
Published
A simplified abstraction fetch api
Downloads
4
Readme
@nelreina/web-api
version 2.0.0 A simplified abstraction of the javascript fetch api
Usage
Simple Methods
import { get, post } from '@nelreina/web-api';
const data = await get('/some-path or http(s)://public/api');
or
Class
import Api from '@nelreina/web-api';
const api = new Api('http(s)://some-host')
const data = await api.get('/some-path');
TODO
- Add option to add custom headers in class