moifetch

0.0.4 • Public • Published

Moifetch

A Lite http/https fetch built with ❤

License Twitter Follow Discord NPM

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);
});

Package Sidebar

Install

npm i moifetch

Weekly Downloads

0

Version

0.0.4

License

MIT

Unpacked Size

13.5 kB

Total Files

15

Last publish

Collaborators

  • moikapy