node-gyp-build icon indicating copy to clipboard operation
node-gyp-build copied to clipboard

Build tool and bindings loader for node-gyp that supports prebuilds

Results 30 node-gyp-build issues
Sort by recently updated
recently updated
newest added

See https://github.com/vweevers/win-version-info/issues/29 for context. With this change, if `npm_config_platform` or `npm_config_arch` are set, and either one doesn't match the current machine, then the build isn't tested (since the test result...

semver-major

See https://github.com/prebuild/node-gyp-build/issues/49#issuecomment-1206448566

semver-patch

This is related to an [issue](https://github.com/parcel-bundler/watcher/issues/104) I have open with `@parcel/watcher`. When building on my local Ubuntu 20.04 machine, `@parcel/watcher` installs successfully because `node-gyp-build` is able to find the `linux-x64`...

I have been doing some testing with bun, which recently added NAPI support, and it turns out that node-gyp-build works pretty well with it with minimal adjustment! Currently [bun doesn't...

This is adds support for optional platform-specific packages as described in https://github.com/prebuild/prebuildify/pull/63.

Rough idea: `prebuildify` would write a JSON file containing build metadata (platform, arch, abi, etc). A secondary tool (serving a similar role as `prebuildify-ci`) would collect those files and generate...

`node-gyp-build`-the-executable currently detects whether there's a build or prebuild available by running a script that loads `node-gyp-build`-the-library, which (reasonably) throws an error if the build/prebuild is missing. It also only...

When using Webpack to bundle a Node application into a single .js file, node-gyp-build cannot unambiguously load the correct `.node` file. In a bundled application, Webpack can provide as `__dirname`...

My Electron project's target platform is Windows x64, but it's built on a Linux system. I already have a native module which uses "prebuild". To install dependecies I run: ```...