@supersimplethings/fetchme
TypeScript icon, indicating that this package has built-in type declarations

0.10.2 • Public • Published

@supersimplethings/fetchme

npm (scoped)

Things should be simple to use

Polite fetch library.

Usage

async function getResponse(someArgs) {
  const body = {
    some: someArgs.some,
    args: someArgs.args
  }
  const response = await fetchme().post(body).to('https://some.site/endpoint').plz()
}

Installation

With npm:

npm install @supersimplethings/fetchme

With yarn:

yarn add @supersimplethings/fetchme

Advanced usage

const ourApi = {
  name: 'ourApi',
  domain: 'https://some.domain',
  endpoints: {
    userById: userId => `/users/${userId}`
  }
}

const token = 'some_token'

const fetchme = new Fetchme(ourApi)
  .setOptions({ headers: { Authorization: `Bearer: ${token}` }})
  .addMiddleware('body', someBodyParser)

async function updateUser(someArgs, userId) {
  const body = {
    some: someArgs.some,
    args: someArgs.args
  }
  const user = await fetchme.put(body).to('ourApi').userById.with(userId).plz()
}

Repository pattern

import { Fetchme, Repository } from '@supersimplethings/fetchme'

class UsersRepository extends Repository {
  constructor(apis, Fetcher) {
    super(apis, Fetcher)

    this.apis = apis
    this.fetcher = new Fetcher(apis)
      .setOptions({ headers: { Authorization: `Bearer: ${token}` }})
      .addMiddleware('body', someBodyParser)
  }

  async createUser(someArgs) {
    const body = {
      some: someArgs.some,
      args: someArgs.args
    }
    const response = await this.fetcher.post(body).to().user.create.plz()

    if (!response.success) return []
    const newUser = someParse(response.data)
    return newUser
  }
}

const ourApi = {
  name: 'ourApi',
  domain: 'https://some.domain',
  endpoints: {
    user: {
      create: () => '/users'
    }
  }
}

const usersRepository = new UsersRepository(ourApi, Fetchme)

License

MIT

Package Sidebar

Install

npm i @supersimplethings/fetchme

Weekly Downloads

4

Version

0.10.2

License

MIT

Unpacked Size

33.9 kB

Total Files

18

Last publish

Collaborators

  • leeratyou