JSPM

@remix-run/web-file

3.1.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 563487
  • Score
    100M100P100Q188536F
  • License MIT

Web API compatible File implementation for node

Package Exports

  • @remix-run/web-file

Readme

web-file

ci package downloads styled with prettier

Web API compatible File for nodejs.

Usage

import { File, Blob } from "@remix-run/web-file"
const file = new File(["hello", new TextEncoder().encode("world")], "hello")
for await (const chunk of blob.stream()) {
  console.log(chunk)
}

Usage from Typescript

This library makes use of typescript using JSDOC annotations and also generates type difinitions along with typed definition maps. So you should be able to get all the type innference out of the box.

Install

npm install @remix-run/web-file