@oslojs/encoding
TypeScript icon, indicating that this package has built-in type declarations

1.0.0 • Public • Published

@oslojs/encoding

Documentation: https://encoding.oslojs.dev

A JavaScript library for encoding and decoding data with hexadecimal, base32, base64, and base64url encoding schemes based on RFC 4648. Implementations may be stricter than most to follow the RFC as close as possible.

  • Runtime-agnostic
  • No third-party dependencies
  • Fully typed
import { encodeBase64, decodeBase64 } from "@oslojs/encoding";

const data: Uint8Array = new TextEncoder().encode("hello world");
const encoded = encodeBase64(data);
const decoded = decodeBase64(encoded);

Installation

npm i @oslojs/encoding

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 1.0.0
    357
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 1.0.0
    357
  • 0.4.1
    136,944
  • 0.4.0
    9
  • 0.3.0
    6,126
  • 0.2.0
    521
  • 0.1.0
    7

Package Sidebar

Install

npm i @oslojs/encoding

Weekly Downloads

119,461

Version

1.0.0

License

MIT

Unpacked Size

16.4 kB

Total Files

11

Last publish

Collaborators

  • pilcrowonpaper