
Security News
TypeScript is Porting Its Compiler to Go for 10x Faster Builds
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
hex-encoding
Advanced tools
Hex encoding. An extremely fast and synchronous JS implementation.
If you can make this faster without using WASM or async stuff please ping me.
npm install hex-encoding
import Hex from 'hex-encoding';
// Hex encoding & decoding
{
const raw = 'Hello 😃';
const uint8 = new TextEncoder ().encode ( raw );
console.log ( uint8 ); // => Uint8Array(10) [ 72, 101, 108, 108, 111, 32, 240, 159, 152, 131 ]
const encoded = Hex.encode ( uint8 );
console.log ( encoded ); // => '48656c6c6f20f09f9883'
const decoded = Hex.decode ( encoded );
console.log ( decoded ); // => // => Uint8Array(10) [ 72, 101, 108, 108, 111, 32, 240, 159, 152, 131 ]
}
// String encoding & decoding
{
const raw = 'Hello 😃';
const encoded = Hex.encodeStr ( raw );
console.log ( encoded ); // => '48656c6c6f20f09f9883'
const decoded = Hex.decodeStr ( encoded );
console.log ( decoded ); // => 'Hello 😃'
}
// Check if a string is hex-encoded
{
console.log ( Hex.is ( '48656c6c6f20f09f9883' ) ); // => true
console.log ( Hex.is ( '😃' ) ); // => false
}
MIT © Fabio Spampinato
FAQs
Hex encoding. An extremely fast and synchronous JS implementation.
The npm package hex-encoding receives a total of 1,709 weekly downloads. As such, hex-encoding popularity was classified as popular.
We found that hex-encoding demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
TypeScript is porting its compiler to Go, delivering 10x faster builds, lower memory usage, and improved editor performance for a smoother developer experience.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.