Answer by Ada for Unable to find electron-prebuilt's version number. - When...
I found my electron version by running npm list electron:`-- electron@26.0.0Then I specified the version number in the command:./node_modules/.bin/electron-rebuild -f -w 26.0.0This solved the issue for...
View ArticleAnswer by akamaozu for Unable to find electron-prebuilt's version number. -...
In the root folder of your project, use this:node_modules/.bin/electron -vIf you're on a Windows machine, use back slashes in the path.node_modules\.bin\electron -vThis is what mine looks like: v0.28.3
View ArticleAnswer by Iron Gremlin for Unable to find electron-prebuilt's version number....
You can see your electron version number by running electron with no arguments..Example:cd ./my_projectnpm install --save-dev electron-prebuiltnode_modules/.bin/electronYou should get a little welcome...
View ArticleAnswer by Janarthanan for Unable to find electron-prebuilt's version number....
Install the electron-prebuilt on the same folder level.
View ArticleUnable to find electron-prebuilt's version number. - When trying to use...
I am trying to use bluetooth-serial-port native module in electron (atom-shell). I did the following.Installed electron-prebuilt.npm install electron-prebuilt -gnpm install electron-prebuilt...
View Article