npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@centrid/native-modules-prebuilds-patcher

v1.5.10

Published

Main package for patching native module prebuilds created by the Native Module Prebuilds Creator

Downloads

1

Readme

Native Module Prebuilds Patcher

Main package for patching native module prebuilds created by the Native Module Prebuilds Creator

Please Note: This project is maintained on gitlab.com

Please see the home page to get a fuller picture of this package.

Important Note: In most cases, you do not need to use the package directly as it is bundled with the generated prebuilds folder created using the Native Module Prebuild Creator. It wraps the appropriate prebuild-manifest.json files, exposes a CLI interface, and unless there is a specific reason, it is recommended to use that one instead.

Installation

To install the Native Module Prebuilds Patcher, use either of the following commands:

npm i @centrid/native-modules-prebuilds-patcher
yarn add @centrid/native-modules-prebuilds-patcher

Usage

import { PrebuildsPatcher } from "@centrid/native-modules-prebuilds-patcher";

const patcher = new PrebuildsPatcher(
  path.join(__dirname, "<path-to-generated-prebuild-manifest.json>"), 
  /* patcherOptions:IPatcherOptions */
  {}
);

/*
Patch all native modules in your current project using the generated prebuilds. This will look for all the native modules in your current project, check if applicable prebuilds are available, and patch them as appropriate.

async PatchAll(arch: string, platform: string, runtime: string)
*/
let patcherPromise = patcher.PatchAll("x64", "win32", "[email protected]");

// OR

/*
Similar to PatchAll, but allows you to specify the packages you want to patch.

async Patch(packagesToPatch: string[], arch: string, platform: string, runtime: string)
*/
patcherPromise = patcher.Patch(["[email protected]", "[email protected]"], "x64", "win32", "[email protected]");

// OR

/*
Revert patched native modules

RevertPatches()
*/
patcherPromise = patcher.RevertPatches();

Other methods available:

/*
Set the project path that contains the native modules to be patched

SetProjectPath(projectDir: string)
*/
patcher.SetProjectPath("<alternate-project-dir>");

/*
Update the patcher options

UpdatePatcherOptions(options: IPatcherOptions)
*/
patcher.UpdatePatcherOptions("<options>");

Please correct any grammatical or spelling errors for the readme file above.

Future Improvements and Other Notes

  • Most of the operations in these packages are run synchronously, and performance gains can be made by running most of these operations asynchronously. This will be considered for future releases.

Contributing

Native Module Prebuilds Creator is an open-source project, and contributions are welcome. If you have a bug fix, please create a pull request explaining what the bug is, how you fixed it, and how you tested it.

If it's a new feature, please add it as an issue with the "enhancement" label, providing details about the new feature and why you think it's needed. We will discuss it there, and once it's agreed upon, you can create a pull request with the highlighted details.

Authors

License

This project is licensed under the MIT License - see the LICENSE file for details.