moifetch
v0.0.4
Published
Lite HTTP/HTTPS for NodeJs and Frontend
Downloads
3
Maintainers
Readme
Moifetch
A Lite http/https fetch built with ❤
Introduction
A lite Http/Https Request Library build with Love and my attempt to Homebrew something for other to use.
How to Add
npm i moifetch
yarn add moifetch
Examples
const moifetch = require('./index');
moifetch.GET('https://httpbin.org/get').then(res => {
expect(res.statusCode).toBe(200);
});
moifetch.PATCH('https://httpbin.org/patch').then(res => {
expect(res.statusCode).toBe(200);
});
moifetch.POST('https://httpbin.org/post').then(res => {
expect(res.statusCode).toBe(200);
});
moifetch.PUT('https://httpbin.org/put').then(res => {
expect(res.statusCode).toBe(200);
});
moifetch.DELETE('https://httpbin.org/delete').then(res => {
expect(res.statusCode).toBe(200);
});