CemUI
CemUI copied to clipboard
Minorly upgrading project to run with recent node, slight dep change,…
… and integration explicitly turned on.
Eliminates primordials and boot stuck errors.
My workflow:
Had node v10... Installed new node on Windows via msi.
> npm i Was getting primordials error this way. Had to clean original node installation dir and repair install.
> npm cache clean --force
> rm -rf node_modules package-lock.json
> node -v v14.4.0
> npm -v 6.14.5
> electron .
App threw an error during load
ReferenceError: primordials is not defined
at fs.js:27:26
at req_ (F:\Mirror\D\JStuff\Games\Consoles\Wii U\Emulators and Files\CemUI\node_modules\natives\index.js:143:24)
at Object.req [as require] (F:\Mirror\D\JStuff\Games\Consoles\Wii U\Emulators and Files\CemUI\node_modules\natives\index.js:55:10)
at Object.
> npm ls 'graceful-fs' | grep 'graceful-fs' | sed -r 's|^\W*||g' | cut -d' ' -f1 | sort | uniq [email protected] [email protected]
> read query; npm ls "$query" read> [email protected] [email protected] F:\Mirror\D\JStuff\Games\Consoles\Wii U\Emulators and Files\CemUI `-- [email protected] `-- [email protected] `-- [email protected]
https://github.com/mafintosh/prebuildify-ci/issues/5#issuecomment-490702703
> npm remove unzip
> npm add unzipper
> grep -ER --exclude-dir='node_modules' "require.*?unzip" . ./app.js: unzip = require('unzip'),
.../app/wrapper/index.html Uncaught ReferenceError: require is not defined at main.js:1
https://stackoverflow.com/a/55908510/1091943 Needs security / more upgrading: https://stackoverflow.com/a/59888788/1091943
Gets most of the way booting now. Probably still more errors like after the wizard going back to manage cemu installs, maybe even the first time since it seems mine was not saved.
Yo, very nice of you updating this 👍.