From 48b61442db24e7440ddbce4da0a0723a06b2c3f8 Mon Sep 17 00:00:00 2001 From: calebboyd Date: Fri, 9 Feb 2018 00:20:52 -0600 Subject: [PATCH] docs: add ico --build note --- README.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/README.md b/README.md index 4fdbefb..bc0b487 100644 --- a/README.md +++ b/README.md @@ -211,11 +211,7 @@ Any modifications made to `NexeFile#contents` will be maintained in the cache _w ## Native Modules -Any `.node` binding can be used with nexe. These library files will be bundled and written alongside the resulting binary at runtime. Currently, nexe supports modules loaded directly (`.node` files) and those loaded with the `'bindings'` module. It does not yet support modules using `node-pre-gyp#find`. - -Its important to note: unless your native module conditionally loads each platform binary. Nexe builds with native modules will be platform specific. Eg. You will no longer be able to use cross platform builds. - -Nexe builds with native modules will need to target the same version, platform and architecture as the platform hosting the module. At least until [N-API](https://github.com/nodejs/abi-stable-node) is fully propegated +A note about native modules, TODO