A Lite http/https fetch built with ❤
A lite Http/Https Request Library build with Love and my attempt to Homebrew something for other to use.
npm i moifetch
yarn add moifetch
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);
});