
Security News
PEP 810 Proposes Explicit Lazy Imports for Python 3.15
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
@leichtgewicht/base64-codec
Advanced tools
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.
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)
Use base64URL
for de-/encoding for the URL variant of base64.
import { base64URL } from '@leichtgewicht/base64-codec'
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.
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.
FAQs
base64 to/from bytes codec (esm/cjs)
The npm package @leichtgewicht/base64-codec receives a total of 20,090 weekly downloads. As such, @leichtgewicht/base64-codec popularity was classified as popular.
We found that @leichtgewicht/base64-codec demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
An opt-in lazy import keyword aims to speed up Python startups, especially CLIs, without the ecosystem-wide risks that sank PEP 690.
Security News
Socket CEO Feross Aboukhadijeh discusses the recent npm supply chain attacks on PodRocket, covering novel attack vectors and how developers can protect themselves.
Security News
Maintainers back GitHub’s npm security overhaul but raise concerns about CI/CD workflows, enterprise support, and token management.