GithubHelp home page GithubHelp logo

fetchkit's Introduction

fetchkit

Fetch toolkits.

import { json } from 'fetchkit'

Build a POST request with JSON payload.

import { json } from 'fetchkit'

fetch('https://httpbin.org/anything', json({ foo: 'bar' }))

// ... is same as ...

fetch('https://httpbin.org/anything', {
    method: 'POST',
    headers: {
        'Content-Type': 'application/json'
    },
    body: JSON.stringify({ foo: 'bar' })
})


// The default method is POST, but you can still overwrite it using `json.call`.

fetch('https://httpbin.org/anything', json.call({ method: 'PUT' }, { foo: 'bar' }))

// ... which is same as ...

fetch('https://httpbin.org/anything', {
    method: 'PUT',
    headers: {
        'Content-Type': 'application/json'
    },
    body: JSON.stringify({ foo: 'bar' })
})


// `json.call` can also be used in providing other parameters, including headers.

fetch('https://httpbin.org/anything', json.call({
    headers: {
        authorization: 'Bearer token'
    },
    credentials: "omit"
}, { foo: 'bar' }))

// ... which is same as ...

fetch('https://httpbin.org/anything', {
    method: 'POST',
    headers: {
        'authorization': 'Bearer token',
        'Content-Type': 'application/json'
    },
    body: JSON.stringify({ foo: 'bar' }),
    credentials: "omit"
})


// Not only methods, the content-type header is also able to be overwritten

fetch('https://httpbin.org/anything', json.call({
    headers: {
        'Content-Type': 'application/vnd.github+json'
    }
}, { foo: 'bar' }))

// ... is same as ...

fetch('https://httpbin.org/anything', {
    method: 'POST',
    headers: {
        'Content-Type': 'application/vnd.github+json'
    },
    body: JSON.stringify({ foo: 'bar' }),
})

import { assert } from 'fetchkit'

response.ok assertion

import { assert } from 'fetchkit'

try {
    const response = await fetch('https://httpbin.org/status/400')
    assert(response)
} catch (e) {
    console.log(e.message) // "HTTP 400"
    console.log(e.response.status) // 400
    console.log(await e.response.text()) // ""
}

import { authorize } from 'fetchkit'

Basic / bearer / token authorization factory

import { authorize } from 'fetchkit'

// Basic auth
const authorized = authorize({ username: 'foo', password: 'bar' })
// Now use `authorized` as general fetch
authorized('https://httpbin.org/basic-auth/foo/bar')

// Bearer auth
const authorized = authorize({ bearer: 'foo' })
// Token auth
const authorized = authorize({ token: 'foo' })

// Of course, the authorization header could be overwritten
authorized('https://httpbin.org/anything', {
    headers: {
        authorization: 'Bearer bar'
    }
})

License

MIT License

fetchkit's People

Contributors

gerhut avatar

Stargazers

Dafrok avatar

Watchers

 avatar  avatar

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.