JSPM

  • Created
  • Published
  • Downloads 15672
  • Score
    100M100P100Q148140F
  • License MIT

fetch client for aspida

Package Exports

  • @aspida/fetch

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@aspida/fetch) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@aspida/fetch


aspida
fetch client for aspida.


Getting Started

Installation

  • Using npm:

    $ npm install @aspida/fetch
  • Using Yarn:

    $ yarn add @aspida/fetch

Make HTTP request from application

src/index.ts

import aspida from "@aspida/fetch"
import api from "../api/$api"

const fetchConfig = { credentials: "include", baseURL: "https://example.com/api" }
const client = api(aspida(fetch, fetchConfig))
;(async () => {
  const userId = 0
  const limit = 10

  await client.v1.users.post({ name: "mario" })

  const res = await client.v1.users.get({ query: { limit } })
  console.log(res)
  // req -> GET: https://example.com/api/v1/users/?limit=10
  // res -> { status: 200, data: [{ id: 0, name: "mario" }], headers: {...} }

  const user = await client.v1.users._userId(userId).$get()
  console.log(user)
  // req -> GET: https://example.com/api/v1/users/0
  // res -> { id: 0, name: "mario" }
})()

License

@aspida/fetch is licensed under a MIT License.