Giter Site home page Giter Site logo

easyfetch's Introduction

easyfetch

npm version

easyfetch is a simple package that aims to facilitate the use of the default fetch function by wrapping it inside an easy to use api.

It uses isomorphic-fetch to support node.js and non-compatible browsers.

Getting started

Install

$ npm install --save easyfetch

or

$ yarn add easyfetch

Api

easyFetch(url)

It returns the EasyFetch class instance.

jsonFetch(url)

It returns the JsonFetch class instance. It also adds Accept and Content-Type headers to : application/json and automatically calls .json() on the response object returned by the promise.

setHeaders(headers)

Set headers on the request. headers is an object. It returns the EasyFetch or JsonFetch class instance in order to chain calls. Should be called before _fetch.

setQueryParams(queryParams)

Set query parameters on the url. queryParams is an object. It returns the EasyFetch or JsonFetch class instance in order to chain calls. Should be called before _fetch.

setOptions(options)

Set options for fetch. options is an object. It returns the EasyFetch or JsonFetch class instance in order to chain calls. Should be called before _fetch.

basicAuth(login, password)

Set the Authorization header to Basic with login and password. It returns the EasyFetch or JsonFetch class instance in order to chain calls. Should be called before _fetch.

head()

It returns the promise returned by fetch. Calls _fetch.

get()

It returns the promise returned by fetch. Calls _fetch.

post(body)

It returns the promise returned by fetch. Calls _fetch.

put(body)

It returns the promise returned by fetch. Calls _fetch.

patch(body)

It returns the promise returned by fetch. Calls _fetch.

delete(body)

It returns the promise returned by fetch. Calls _fetch.

Usage Example

import {easyFetch, jsonFetch} from 'easyfetch'

var data = {test: "data", field: "test", field2: 1}
var formdata = Object.keys(data).map((k) => [k, encodeURIComponent(data[k])].join('=')).join('&')

easyFetch("https://httpbin.org/get").get()
    .then(response => /* do what you want with the response */)
    .catch(error => console.log(error.response))

easyFetch("https://httpbin.org/post")
    .setHeaders({"Content-Type": "application/x-www-form-urlencoded"})
    .post(formdata)
    .then(response => response.json())
    .catch(error => console.log("Request failed: ", error.response))
    
jsonFetch("https://httpbin.org/get")
    .setHeaders({'X-Api-Key': config.easyPOSLogApi.apiKey})
    .get().then(data => console.log(data))

jsonFetch("https://httpbin.org/post").post(data)
    .then(data => console.log(data))

Contributing

Feel free to open issues and submit pull-requests.

easyfetch's People

Contributors

dependabot[bot] avatar philipgarnero avatar rdura avatar sukicz avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Forkers

rdura

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.