
Security News
Risky Biz Podcast: Making Reachability Analysis Work in Real-World Codebases
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Erlpack is a fast encoder and decoder for the Erlang Term Format (version 131) for JavaScript
Erlpack is a fast encoder and decoder for the Erlang Term Format (version 131) for Python and JavaScript.
let erlpack = require("erlpack");
packed = erlpack.pack({'a': true, 'list': ['of', 3, 'things', 'to', 'pack']});
Note: Unpacking requires the binary data be a Uint8Array or Buffer. For those using electron/libchromium see the gotcha below.
let erlpack = require("erlpack");
let unpacked = null;
let packed = new Buffer('', 'binary');
try {
unpacked = erlpack.unpack(packed);
}
catch (e) {
// got an exception parsing
}
Some versions of libchromium replace the native data type backing TypedArrays with a custom data type called blink::WebArrayBuffer. To keep erlpack' dependencies simple this data type is not supported directly. If you're using Electron / Libchromium you need to convert the blink::WebArrayBuffer into a node::Buffer before passing to erlpack. You will need to add this code into your native package somewhere:
v8::Local<v8::Value> ConvertToNodeBuffer(const v8::Local<v8::Object>& blinkArray)
{
if (node::Buffer::HasInstance(blinkArray)) {
return blinkArray;
}
else if (blinkArray->IsArrayBufferView()) {
auto byteArray = v8::ArrayBufferView::Cast(*blinkArray);
return node::Buffer::Copy(v8::Isolate::GetCurrent(), (const char*)byteArray->Buffer()->GetContents().Data(), byteArray->ByteLength()).ToLocalChecked();
}
return v8::Local<v8::Primitive>(v8::Null(v8::Isolate::GetCurrent()));
}
Then in JavaScript something like:
let packed = NativeUtils.convertToNodeBuffer(new Uint8Array(binaryPayload));
// unpack now using erlpack.unpack(packed)
from erlpack import pack
packed = pack(["thing", "to", "pack"])
from erlpack import unpack
unpacked = unpack(packed)
from erlpack import Atom, pack
packed = pack(Atom('hello'))
from erlpack import ErlangTermEncoder
def encode_hook(obj):
if isinstance(obj, datetime.datetime):
return obj.isoformat()
encoder = ErlangTermEncoder(encode_hook=encode_hook)
packed = encoder.pack(datetime.datetime(2015, 12, 25, 12, 23, 55))
from erlpack import pack, Atom
class User(object):
def __init__(self, name, age):
self.name = name
self.age = age
def __erlpack__(self):
return {
Atom('name'): self.name,
Atom('age'): self.age
}
u = User(name='Jake', age=23)
packed = pack(u)
Discord has moved away from Go internally and so we do not maintain a version of erlpack in Go ourselves. However, all is not lost!, please check out: https://github.com/JakeMakesStuff/go-erlpack
FAQs
Erlpack is a fast encoder and decoder for the Erlang Term Format (version 131) for JavaScript
We found that erlpack 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
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.
Security News
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.