bm-minimal-fetch
v1.1.0
Published
An http fetcher with basic options to make it simpler
Downloads
4
Maintainers
Readme
http-minimal-fetch
An http fetcher with basic options to make it simpler
Usage
This package is instanced using a singleton pattern, so you only need to import it like this way:
import HttpRequest from 'bm-minimal-fetch';
const http = HttpRequest.getInstance('http://your-desired-url-to-fetch');
Now if you need to do an HTTP GET request, just type:
http.get('/your-endpoint');
Also, we would be able to send an HTTP POST request, just typing:
http.post('/your-endpoint', {
user: 'foo',
lastname: 'bar'
})