Package Exports
- @happy-ts/fetch-t
- @happy-ts/fetch-t/dist/main.cjs
- @happy-ts/fetch-t/dist/main.mjs
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 (@happy-ts/fetch-t) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
fetchT
中文
Abortable && Predictable
The return value of fetchT includes an abort
method.
The return data of fetchT is of a specific type, which can be either string
, ArrayBuffer
, Blob
, or <T>(generic)
.
Support timeout
.
Support progress
.
Installation
# via pnpm
pnpm add @happy-ts/fetch-t
# or via yarn
yarn add @happy-ts/fetch-t
# or just from npm
npm install --save @happy-ts/fetch-t
# via JSR
jsr add @happy-ts/fetch-t
# for deno
deno add @happy-ts/fetch-t
# for bun
bunx jsr add @happy-ts/fetch-t
Why fetchT
fetchT is a simple encapsulation of the fetch API, with two main modifications:
- It adds the
abortable
parameter. Ifabortable: true
is passed, fetchT will return aFetchTask
object that allows you to abort the request by callingFetchTask.abort()
. - It supports generic return values by adding the responseType parameter. The optional values for
responseType
include'text' | 'arraybuffer' | 'blob' | 'json'
. The return value corresponds to the parameter and can be eitherstring | ArrayBuffer | Blob | T
, where T is the generic type. All return values are of the Result type, which facilitates error handling.
If you don't have these requirements, it is recommended to use the vanilla fetch.
Examples
import { fetchT } from '@happy-ts/fetch-t';
const fetchTask = fetchT('https://example.com', {
abortable: true,
responseType: 'json',
timeout: 3000,
onChunk(chunk): void {
console.assert(chunk instanceof Uint8Array);
},
onProgress(progressResult): void {
progressResult.inspect(progress => {
console.log(`${ progress.completedByteLength }/${ progress.totalByteLength }`);
}).inspectErr(err => {
console.error(err);
});
},
});
somethingHappenAsync(() => {
fetchTask.abort('cancel');
});
const res = await fetchTask.response;
res.inspect(data => {
console.log(data);
}).inspectErr(err => {
console.assert(err === 'cancel');
});
For more examples, please refer to test case fetch.test.ts.