README 428 B

12345678910111213
  1. Here are some examples implementing custom streams to load documents.
  2. fetch.js
  3. Example of loading document using fetch instead of from a file
  4. fetch-stream.js
  5. Example of using fetch to load a document progressively,
  6. using TRYLATER signaling.
  7. custom-stream.js
  8. More examples of custom streams:
  9. - using Node's synchronous file descriptor API.
  10. - using FileReaderSync on Blob or File objects in Web Worker contexts.