auth-fetch

1.0.1 • Public • Published

auth-fetch

Fetch JSON with a Bearer token

Install

npm install auth-fetch

Usage

When you create an instance, you can use every http method and it will automatically fill the API url and the Bearer token. Also, it will request the data as application/json, and it will unwrap the json result for you (equivalent to fetch(url).then(r => r.json()))

import AuthFetch from 'auth-fetch'

const fetch = new AuthFetch('/api/users', 'secret-token')

await fetch.get().then(users => console.log(users))
await fetch.put({id: 2, name: 'pablo'})
await fetch.put({id: 2, name: 'pablo varela'})
await fetch.delete({id: 2})

License

MIT

Author

me
Pablo Varela

/auth-fetch/

    Package Sidebar

    Install

    npm i auth-fetch

    Weekly Downloads

    3

    Version

    1.0.1

    License

    MIT

    Unpacked Size

    3.53 kB

    Total Files

    6

    Last publish

    Collaborators

    • pablopunk