包详细信息

@swan-io/request

swan-io552MIT3.0.0

Wrapper for XMLHttpRequest with better data-structures

typescript, boxed, request, xhr

自述文件

@swan-io/request logo

@swan-io/request

mit licence npm version bundlephobia

Wrapper for fetch with better data-structures

Installation

$ yarn add @swan-io/request @swan-io/boxed
# --- or ---
$ npm install --save @swan-io/request @swan-io/boxed

Design principles

  • Has a strong contract with data-structures from Boxed (Future, Result & Option)
  • Makes the request easily cancellable with Future API
  • Gives freedom of interpretation for response status
  • Handles timeouts
  • Types the response using the provided type

Getting started

import { Request, badStatusToError, emptyToError } from "@swan-io/request";

// Regular case
Request.make({ url: "/api/health", type: "text" }).onResolve(console.log);
// Result.Ok({status: 200, ok: true, response: Option.Some("{\"ok\":true}")})

// Timeout
Request.make({ url: "/api/health", type: "text", timeout: 2000 }).onResolve(
  console.log,
);
// Result.Error(TimeoutError)

// Network error
Request.make({ url: "/api/health", type: "text" }).onResolve(console.log);
// Result.Error(NetworkError)

// Custom response type
Request.make({ url: "/api/health", type: "json" }).onResolve(console.log);
// Result.Ok({status: 200, ok: true, response: Option.Some({ok: true})})

// Handle empty response as an error
Request.make({ url: "/api/health", type: "text" })
  .mapOkToResult(emptyToError)
  .onResolve(console.log);
// Result.Error(EmptyResponseError)

// Handle bad status as an error
Request.make({ url: "/api/health", type: "text" })
  .mapOkToResult(badStatusToError)
  .onResolve(console.log);
// Result.Error(BadStatusError)

// Cancel request
useEffect(() => {
  const future = Request.make({ url: "/api/health", type: "text" });
  return () => future.cancel();
}, []);

API

Request.make(config)

config

  • url: string
  • method: GET (default), POST, OPTIONS, PATCH, PUT or DELETE
  • type:
    • text: (default) response will be a string
    • arraybuffer: response will be a ArrayBuffer
    • blob: response will be Blob
    • json: response will be a JSON value
  • body: request body
  • headers: a record containing the headers
  • creatials: omit, same-origin or include
  • timeout: number

Return value

Returns a Future<Result<Response<T>, NetworkError | TimeoutError>>, where Response<T> has the following properties:

  • status: number
  • ok: boolean
  • response: Option<T>
  • url: string

T is the type associated with the responseType provided in the config object.

emptyToError

Helper to use with mapOkToResult to consider empty response as an error.

badStatusToError

Helper to use with mapOkToResult to consider a status outside of the 200-299 range as an error.

License

更新日志

3.0.0

Changes

  • Replace JsonValue type with unknown (a32d964)

2.0.0

Changes

  • Use fetch rather than XMLHttpRequest for node compat (112ab0e)

1.0.6

Changes

  • Update Boxed

1.0.5

Changes

  • Update Boxed

1.0.4

Changes

  • Add informations on errors

1.0.3

Changes

  • Add informations on errors

1.0.2

Changes

  • Export error types

1.0.1

Changes

  • Expose Response type

1.0.0

Initial version