Minimal helper to resolve fetch with specified response type. In case of failure, an error will return instead.
Please make sure fetch API is available globally for Node.js. node-fetch is a very good alternative.
$ npm i node-fetchconst fetch = require('node-fetch');
global.fetch = fetch;/** Available options: arrayBuffer, blob, json, text */
import { json } from 'nodemod/dist/fetch-as/index.js';
(async () => {
/** Same function signature as native Fetch API, without the need to await .json() */
const d = await json('http://www.mocky.io/v2/5a50cfa82f000085158d5315', { method: 'GET' });
console.log(d); /** { status: 200, message: 'OK', by: 'fetch-as' }; */
})();// Interface
interface FetchAsInfo {
size: number;
timeout: number;
type: "basic"|"cors"|"default"|"error"|"opaque"|"opaqueredirect";
headers: {
[key: string]: any;
};
}// Interface
interface FetchAsReturnType<T = any, U = any> {
status: number;
info: FetchAsInfo;
data?: T;
error?: U;
}-
status<string> HTTP response status code. Any response that has a HTTP status greater than399can be regarded as an error response. -
info<Object> This contains additional information you might need from a response. See FetchAsInfo for the detailed interface. -
data<?any> This contains the successful response data of the user-specified type, for instance,MyReturnDatain the example shown above. Only shows when the HTTP response status code is less than400. -
error<?any> This contains the error response data of typeT. Only shows when the HTTP response status code is greater than399.
Each return type have default Generics type of any which means it can be any type in JavaScript and is overridable by user defined type via TypeScript's Generics.
// e.g. Overridable Generics
interface SuccessData {
message: string;
}
...
const d = await FetchAsJson<SuccessData>(...);
// d will have the type of `FetchAsReturnType<SuccessData, any>>`
assert(d.data.message, '...'); // OK
...This contains a collection of methods that will convert the response into the specified data type:
.arrayBuffer(url[, options])Method which will return a ArrayBuffer..blob(url[,options])Method which will return a Blob..json(url[, options])Method which will return a JSON data which can consumed by JavaScript as Object..text(url[, options])Method which will return a text string.
url<string> A string representing the URL for fetching.options<?Object> Options for HTTP(S) request, see fetch's init parameter.- returns: <Promise<FetchAsReturnType<ArrayBuffer>> Promise which resolves with a FetchAsReturnType of type ArrayBuffer.
url<string> A string representing the URL for fetching.options<?Object> Options for HTTP(S) request, see fetch's init parameter.- returns: <Promise<FetchAsReturnType<Blob>> Promise which resolves with a FetchAsReturnType of type Blob.
url<string> A string representing the URL for fetching.options<?Object> Options for HTTP(S) request, see fetch's init parameter.- returns: <Promise<FetchAsReturnType<Object>> Promise which resolves with a FetchAsReturnType of type JSON which can consumed by JavaScript as Object.
url<string> A string representing the URL for fetching.options<?Object> Options for HTTP(S) request, see fetch's init parameter.- returns: <Promise<FetchAsReturnType<string>> Promise which resolves with a FetchAsReturnType of type string.
MIT License © Rong Sen Ng