@hugoalh/base64
v0.1.2
Published
A module for Base64 encode and decode.
Maintainers
Readme
Base64 (ES)
An ECMAScript (JavaScript & TypeScript) module for Base64 encode and decode.
🌟 Features
- Support multiple variants alphabet and padding:
- RFC 1421: Base64 encoding for privacy enhanced mail (Deprecated)
- RFC 2045: Base64 transfer encoding for MIME
- RFC 2152: Base64 encoding for UTF-7
- RFC 3501: Base64 encoding for IMAP mailbox names
- RFC 4648 §4: Base64 encoding (Standard)
- RFC 4648 §5: Base64 encoding with URL and filename safe alphabet (Base64URL)
- RFC 9580: ASCII armor encoding for OpenPGP
- Support stream encode and decode.
🔰 Begin
🎯 Targets
| Targets | Remote | JSR | NPM | |:--|:-:|:-:|:-:| | Bun >= v1.1.0 | ❌ | ✔️ | ✔️ | | Deno >= v2.1.0 | ✔️ | ✔️ | ✔️ | | NodeJS >= v20.9.0 | ❌ | ✔️ | ✔️ |
[!NOTE]
- It is possible to use this module in other methods/ways which not listed in here, however those methods/ways are not officially supported, and should beware maybe cause security issues.
#️⃣ Resources Identifier
- Remote - GitHub Raw:
https://raw.githubusercontent.com/hugoalh/base64-es/{Tag}/mod.ts - JSR:
[jsr:]@hugoalh/base64[@{Tag}] - NPM:
[npm:]@hugoalh/base64[@{Tag}]
[!NOTE]
For usage of remote resources, it is recommended to import the entire module with the main path
mod.ts, however it is also able to import part of the module with sub path if available, but do not import if:
- it's path has an underscore prefix (e.g.:
_foo.ts,_util/bar.ts), or- it is a benchmark or test file (e.g.:
foo.bench.ts,foo.test.ts), or- it's symbol has an underscore prefix (e.g.:
_bar,_foo).These elements are not considered part of the public API, thus no stability is guaranteed for them.
For usage of JSR or NPM resources, it is recommended to import the entire module with the main entrypoint, however it is also able to import part of the module with sub entrypoint if available, please visit the file
jsr.jsoncpropertyexportsfor available sub entrypoints.It is recommended to use this module with tag for immutability.
🛡️ Runtime Permissions
This module does not request any runtime permission.
🧩 APIs
class Base64Decoder { constructor(options?: Base64DecodeOptions); get variant(): Base64Variant; decodeToBytes(item: string | Uint8Array): Uint8Array; decodeToText(item: string | Uint8Array): string; }class Base64Encoder { constructor(options?: Base64EncodeOptions); get padding(): boolean; get variant(): Base64Variant; encodeToBytes(item: string | Uint8Array): Uint8Array; encodeToText(item: string | Uint8Array): string; }class Base64DecoderStream extends TransformStream<Uint8Array, Uint8Array> { constructor(options?: Base64DecodeOptions); }class Base64EncoderStream extends TransformStream<Uint8Array, Uint8Array> { constructor(options?: Base64EncodeOptions); }type Base64Variant = | "rfc1421" | "rfc2045" | "rfc2152" | "rfc3501" | "rfc4648-4" | "rfc4648-5" | "rfc9580" | "standard" | "url";interface Base64BasicOptions { variant?: Base64Variant; }interface Base64DecodeOptions extends Base64BasicOptions { }interface Base64EncodeOptions extends Base64BasicOptions { padding?: boolean | null; }
[!NOTE]
- For the full or prettier documentation, can visit via:
✍️ Examples
new Base64Encoder().encodeToText("Many hands make light work."); //=> "TWFueSBoYW5kcyBtYWtlIGxpZ2h0IHdvcmsu"
