Skip to content

Releases: SocketDev/socket-btm

stubs 20260126-fb0e10c

26 Jan 19:06

Choose a tag to compare

SMOL decompression stub binaries for all platforms.

Platforms

  • darwin-arm64
  • darwin-x64
  • linux-arm64
  • linux-x64
  • linux-arm64-musl
  • linux-x64-musl
  • win-arm64
  • win-x64

Files

Each platform archive contains a small stub binary used by binpress to create self-extracting executables.

  • checksums.txt - SHA256 checksums

Usage

Download the appropriate stub for your platform and extract:

tar -xzf smol-stub-<platform>-<arch>[-<libc>].tar.gz

node-smol 20260126-9448f2c

26 Jan 01:32

Choose a tag to compare

Node.js v minimal binaries for all platforms.

Platforms

  • darwin-arm64
  • darwin-x64
  • linux-arm64
  • linux-x64
  • linux-arm64-musl
  • linux-x64-musl
  • win-arm64
  • win-x64

Files

  • node-darwin-arm64 - macOS Apple Silicon
  • node-darwin-x64 - macOS Intel
  • node-linux-arm64 - Linux ARM64 (glibc)
  • node-linux-x64 - Linux x64 (glibc)
  • node-linux-arm64-musl - Linux ARM64 (musl/Alpine)
  • node-linux-x64-musl - Linux x64 (musl/Alpine)
  • node-win-arm64.exe - Windows ARM64
  • node-win-x64.exe - Windows x64
  • checksums.txt - SHA256 checksums

Usage

Download the appropriate binary for your platform and run it:

./node-darwin-arm64 script.js

lief 20260125-f8a1c6b

25 Jan 20:30

Choose a tag to compare

LIEF v0.17.3 library for binary parsing and manipulation.

Platforms

  • darwin-arm64
  • darwin-x64
  • linux-arm64
  • linux-x64
  • linux-arm64-musl
  • linux-x64-musl
  • win-arm64
  • win-x64

Files

Each platform archive contains:

  • Static library (libLIEF.a or LIEF.lib)
  • Header files (include/ directory)
  • checksums.txt - SHA256 checksums

Usage

Download the appropriate archive for your platform and extract:

tar -xzf lief-<platform>-<arch>.tar.gz
# Or for musl:
tar -xzf lief-<platform>-<arch>-musl.tar.gz

curl 20260125-4e3d96e

25 Jan 20:50

Choose a tag to compare

curl 8.18.0 with mbedTLS 3.6.5 for HTTPS support in self-extracting stubs.

Platforms

  • darwin-arm64
  • darwin-x64
  • linux-arm64
  • linux-x64
  • linux-arm64-musl
  • linux-x64-musl
  • win-arm64
  • win-x64

Files

Each platform archive contains:

  • libcurl.a - Static curl library
  • libmbedtls.a - mbedTLS library
  • libmbedx509.a - mbedTLS X.509 library
  • libmbedcrypto.a - mbedTLS crypto library
  • include/ - curl headers
  • checksums.txt - SHA256 checksums

Usage

Download the appropriate archive for your platform and extract:

tar -xzf curl-<platform>-<arch>.tar.gz
# Or for musl:
tar -xzf curl-<platform>-<arch>-musl.tar.gz

yoga-layout 20260114-43c3220

14 Jan 04:12

Choose a tag to compare

Yoga Layout v3.1.0 compiled to WebAssembly.

Files

  • yoga-20260114-43c3220.wasm - WASM binary
  • yoga-20260114-43c3220.mjs - ES module loader
  • yoga-sync-20260114-43c3220.cjs - Synchronous CommonJS wrapper
  • yoga-sync-20260114-43c3220.mjs - Synchronous ES module wrapper
  • checksums.txt - SHA256 checksums

Usage

Import the module in your project:

import yoga from './yoga-20260114-43c3220.mjs';

onnxruntime 20260114-43c3220

14 Jan 04:47

Choose a tag to compare

ONNX Runtime v1.20.1 compiled to WebAssembly with SIMD and threading support.

Files

  • ort.wasm - WASM binary with SIMD + threading
  • ort.mjs - ES module loader
  • ort-sync.cjs - Synchronous CommonJS wrapper
  • ort-sync.mjs - Synchronous ES module wrapper
  • checksums.txt - SHA256 checksums

Usage

Import the module in your project:

import ort from './ort.mjs';

models 20260114-43c3220

14 Jan 04:32

Choose a tag to compare

INT4 quantized ONNX models: codet5-base and all-MiniLM-L6-v2.

Files

  • models-20260114-43c3220.tar.gz - All production models (INT4 quantized)
  • checksums.txt - SHA256 checksums

Included Models

  • minilm-l6/model.onnx - Sentence embeddings model
  • codet5/model.onnx - Code understanding model

Usage

Extract the archive and load models with ONNX Runtime:

tar -xzf models-20260114-43c3220.tar.gz