Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

@leichtgewicht/base64-codec

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@leichtgewicht/base64-codec

base64 to/from bytes codec (esm/cjs)

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
26K
15.77%
Maintainers
1
Weekly downloads
 
Created
Source

@leichtgewicht/base64-codec

A javascript-only (esm/cjs) base64 codec that is abstract-encoding compatible, well-tested and pretty efficient. Bonus: It doesn't use Nodejs' Buffer object and comes with typescript types.

Usage

import { base64 } from '@leichtgewicht/base64-codec' // require works too!

const str = 'AA=='
const bytes = base64.encode(
  str,
  new Uint8Array(base64.encodingLength(str)), // own buffer supplied, optional
  0 // offset, at which to write the str, optional
)
str === base64.decode(bytes, 0, bytes.length)

URL Support

Use base64URL for de-/encoding for the URL variant of base64.

import { base64URL } from '@leichtgewicht/base64-codec'

Concatenated Buffer

For performance reasons, this codec does not support concatenated base64 strings.

If you need to encode concatenated strings, split them before passing them to this codec.

Why?

There are plenty of base64 implementations on NPM, but when looking into them there was none with cjs/esm support that offered positional encoding and bringing one owns buffer.

License

MIT

Keywords

base64

FAQs

Package last updated on 30 May 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts