Crates.io | alshdavid_test |
lib.rs | alshdavid_test |
version | 0.0.1 |
source | src |
created_at | 2025-02-26 12:37:29.984557+00 |
updated_at | 2025-02-26 12:37:29.984557+00 |
description | Bundler For The Modern Web |
homepage | |
repository | https://github.com/alshdavid/mach |
max_upload_size | |
id | 1570399 |
size | 33,983 |
This project automatically monitors Node.js for new releases and compiles the latest versions into shared libraries using GitHub Actions. You can conveniently access these binaries in the release section of this repository.
Download your suitable release and place the binaries into your Operating System's shared library location. On Linux for example, you'd do:
# Replace <version> with the version you're willing to download, e.g. `v22.1.0`.
# Replace <arch> with your CPU architecture. e.g. `amd64` or `arm64`.
wget https://github.com/metacall/libnode/releases/download/<version>/libnode-<arch>-linux.tar.xz
# Extract the archive.
tar xvf libnode-<arch>-linux.tar.xz
# Move the binaries to `/usr/lib`
sudo mv libnode.so* /usr/lib/
# Move the node executable to `/usr/bin/`
sudo mv node /usr/bin/
After doing the previous step, you can use libnode in Metacall like this:
cmake \
# Your options ...
# Replace the path with your Operating System's shared library location
# if you're not using Linux
-DNodeJS_EXECUTABLE=/usr/bin/node \
-DNodeJS_LIBRARY=/usr/lib/libnode.so \
..
This project is licensed under the Apache-2.0 License.