Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 621 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 621 Bytes

fetz

Generic fetch consisting of CRUD operations

npm version Build Status

Install

npm install -S fetz

Basic Usage

WIP!!

import fetz from 'fetz';

fetz({
requestUrl: 'http://some-domain.com',
method: 'PATCH',
body: {name: 'Max'}
});

Support

Bring your own Promise polyfill if you need to support browsers that do not have a native Promise implementation.