https://github.com/alshdavid/libnode-prebuilt
Prebuilt libnode binaries
https://github.com/alshdavid/libnode-prebuilt
Last synced: 9 months ago
JSON representation
Prebuilt libnode binaries
- Host: GitHub
- URL: https://github.com/alshdavid/libnode-prebuilt
- Owner: alshdavid
- License: apache-2.0
- Created: 2025-05-03T11:17:35.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-08-19T03:59:09.000Z (11 months ago)
- Last Synced: 2025-08-19T05:41:35.643Z (11 months ago)
- Language: Shell
- Homepage:
- Size: 28.3 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Prebuilt `libnode` binaries
## Installation
Downloads are in the releases
```bash
mkdir -p /opt/libnode
curl -L --url https://github.com/alshdavid/libnode-prebuilt/releases/download/v22.15.0/libnode-linux-amd64.tar.xz \
| tar -xJvf - -C /opt/libnode
```
## Patches for C FFI
This includes [this PR](https://github.com/nodejs/node/pull/58207) which adds an extern C function `node_embedding_main` for embedders coming from languages that cannot use C++ bindings (Like Rust, C#, etc).