An open API service indexing awesome lists of open source software.

https://github.com/blackaslight/encoding-stream

An extension of the @std/encoding module offering streaming methods of the base64, 32, and 16 methods.
https://github.com/blackaslight/encoding-stream

base32 base64 browser decoding deno encoding hex javascript stream typescript

Last synced: 5 months ago
JSON representation

An extension of the @std/encoding module offering streaming methods of the base64, 32, and 16 methods.

Awesome Lists containing this project

README

          

# Encoding Stream

Encoding Stream is a simple lib offering Streaming methods of the [@std/encoding](https://jsr.io/@std/encoding) module.

```ts
import { DecodeBase64Stream, EncodeBase64Stream } from '@doctor/encoding-stream'

await (await Deno.open('./deno.json'))
.readable
.pipeThrough(new EncodeBase64Stream())
.pipeThrough(new DecodeBase64Stream())
.pipeTo(Deno.stdout.writable, { preventClose: true })
```