parcel-bundler / parcel

The zero configuration build tool for the web. šŸ“¦šŸš€
https://parceljs.org
MIT License
43.52k stars 2.26k forks source link

Binary deps cause ERR_DLOPEN_DISABLED #7799

Closed FossPrime closed 2 years ago

FossPrime commented 2 years ago

šŸ› bug report

$ parcel index.html courses/**/* --open
_0x5037b1 [Error]: Cannot load native addon because loading addons is disabled.
    at process.dlopen (https://node-rma527.w.staticblitz.com/blitz.5bca79c80956550a0ee18f24bf5b874e18bb8626.js:15:193771)
    at Object.Module._extensions..node (https://node-rma527.w.staticblitz.com/blitz.5bca79c80956550a0ee18f24bf5b874e18bb8626.js:6:196774)
    at Module.load (https://node-rma527.w.staticblitz.com/blitz.5bca79c80956550a0ee18f24bf5b874e18bb8626.js:6:194488)
    at Function.Module._load (https://node-rma527.w.staticblitz.com/blitz.5bca79c80956550a0ee18f24bf5b874e18bb8626.js:6:192091)
    at Module.require (https://node-rma527.w.staticblitz.com/blitz.5bca79c80956550a0ee18f24bf5b874e18bb8626.js:6:194806)
    at i (https://node-rma527.w.staticblitz.com/blitz.5bca79c80956550a0ee18f24bf5b874e18bb8626.js:6:349630)
    at _0x2ab051 (https://node-rma527.w.staticblitz.com/blitz.5bca79c80956550a0ee18f24bf5b874e18bb8626.js:15:101485)
    at Object.eval (/home/projects/node-rma527/node_modules/@parcel/source-map/parcel_sourcemap_node/index.js:15:18)
    at Object.function (https://node-rma527.w.staticblitz.com/blitz.5bca79c80956550a0ee18f24bf5b874e18bb8626.js:15:101848)
    at Module._compile (https://node-rma527.w.staticblitz.com/blitz.5bca79c80956550a0ee18f24bf5b874e18bb8626.js:6:196043) {
  code: 'ERR_DLOPEN_DISABLED'
}

šŸŽ› Configuration (.babelrc, package.json, cli command)

parcel build index.html

šŸ¤” Expected Behavior

Install and build with no hard binary dependencies

šŸ˜Æ Current Behavior

ERR_DLOPEN_DISABLED

šŸ’ Possible Solution

Remove binary dependencies and use Browser compatible APIs

šŸ”¦ Context

I'm running Stackblitz on an HP 14c. The error happens on cloud projects and on on-disk projects.

šŸ’» Code Sample

Vanilla TS Sandbox

šŸŒ Your Environment

Software Version(s)
Parcel 2.3
Node 16.14
npm/Yarn 7.17
Operating System ChromeOS / Stackblitz WebContainers

Related

FossPrime commented 2 years ago

Duplicate #7748