# @mappedin/mvf-fetch

> Isomorphic utilities for efficiently reading published MVF v2/v3 zip archives from the cloud via HTTP Range requests.

Latest version **3.0.0-beta.15** (published 2026-09-24) · UNLICENSED license · 0 weekly downloads

## Install

```sh
npm install @mappedin/mvf-fetch
pnpm add @mappedin/mvf-fetch
yarn add @mappedin/mvf-fetch
bun add @mappedin/mvf-fetch
```

## Health

**Score 60/100 (C)** — status: active.

Positive: esm support; no vulnerabilities; recently updated; high maintenance score.

Warnings: low downloads; no types.

## Facts

| | |
|---|---|
| Version | 3.0.0-beta.15 |
| Published | 2026-09-24 |
| First published | 2026-09-24 |
| Weekly downloads | 0 |
| License | UNLICENSED |
| TypeScript types | none |
| Module format | ESM |
| Dependencies | 2 |
| Unpacked size | 277.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Mappedin |
| Maintainers | mappedin-ops, mappedin-engineering |

## Links

- npm: https://www.npmjs.com/package/@mappedin/mvf-fetch
- Homepage: https://developer.mappedin.com/
- npm.io page: https://npm.io/package/@mappedin/mvf-fetch

## Dependencies (2)

- [fflate](https://npm.io/package/fflate.md) 0.8.3
- [@mappedin/safe-types](https://npm.io/package/@mappedin/safe-types.md) ^1.0.1

## Recent versions

- 3.0.0-beta.15 (latest) — 2026-09-24

## README

# MVF Fetch

Isomorphic utilities for efficiently reading published MVF v2/v3 zip archives from the cloud via HTTP Range requests.

This package focuses on extracting and optionally validating individual zip entries. It does not render maps or convert between MVF versions.

## Usage

```ts
import { createMvfFetcher } from '@mappedin/mvf-fetch';
import { autoMvfValidator } from '@mappedin/mvf-fetch/validators';

const fetcher = createMvfFetcher({
  url: async () => ({
    url: signedZipUrl,
    cacheKey: `${venueId}:${updatedAt}`,
  }),
  validate: autoMvfValidator(),
});

const version = await fetcher.getVersion();
const { files } = await fetcher.getEntries(['manifest.geojson', 'floors.geojson']);
```

---
_Source: https://npm.io/package/@mappedin/mvf-fetch · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
