-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Some fix on bigint and dataview. - Add section dedicated to prebuild tools. PR-URL: nodejs/node-addon-api#353 Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
- Loading branch information
1 parent
8ba5228
commit 26c28d2
Showing
5 changed files
with
62 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Prebuild tools | ||
|
||
The distribution of a native add-on is just as important as its implementation. | ||
In order to install a native add-on it's important to have all the necessary | ||
dependencies installed and well configured (see the [setup](doc/setum.md) section). | ||
The end-user will need to compile the add-on when they will do an `npm install` | ||
and in some cases this could create problems. To avoid the compilation process it's | ||
possible to ditribute the native add-on in pre-built form for different platform | ||
and architectures. The prebuild tools help to create and distrubute the pre-built | ||
form of a native add-on. | ||
|
||
The following list report two of the tools that are compatible with **N-API**: | ||
|
||
- **[node-pre-gyp](https://www.npmjs.com/package/node-pre-gyp)** | ||
- **[prebuild](https://www.npmjs.com/package/prebuild)** | ||
- **[prebuildify](https://www.npmjs.com/package/prebuildify)** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters