IOweb/node_modules/@oslojs/encoding
2026-07-03 15:07:38 -05:00
..
dist V0, basado en Astro 2026-07-03 15:07:38 -05:00
LICENSE V0, basado en Astro 2026-07-03 15:07:38 -05:00
package.json V0, basado en Astro 2026-07-03 15:07:38 -05:00
README.md V0, basado en Astro 2026-07-03 15:07:38 -05:00

@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