@chunkd/source-http
TypeScript icon, indicating that this package has built-in type declarations

11.1.0 • Public • Published

@chunkd/source-http

Load a chunks of a file from a HTTP(s) Source using fetch

Usage

import { SourceHttp } from '@chunkd/source-http';

const source = new SourceHttp(new URL('https://example.com/cog.tif'));

const firstBuffer = await source.fetchBytes(0, 1024); // Load the first 1KB from the source
const lastBuffer = await source.fetchBytes(-1024); // load the last 1KB from the source

const size = source.metadata?.size; // File size if metadata has been fetched

Relative URLs

for relative urls, use document.baseURI

const source = new SourceHttp(new URL('../cog.tif', document.baseURI));

Advanced Usage

For caching, block alignment and fetch grouping see @chunkd/middleware and @chunkd/fs

Nodejs <18

Node.js <18 does not come with a default fetch function, a fetch method must be provided before being able to be used.

import { SourceHttp } from '@chunkd/source-http';
import { fetch } from 'node-fetch';

SourceHttp.fetch = fetch;

Readme

Keywords

none

Package Sidebar

Install

npm i @chunkd/source-http

Weekly Downloads

239

Version

11.1.0

License

MIT

Unpacked Size

21.2 kB

Total Files

10

Last publish

Collaborators

  • blacha