Skip to content

panalbish/fetz

Repository files navigation

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.