"Unable to find electron-prebuilt's version number"
See original GitHub issueAs described in the Electron documentation and this module’s README, I simply installed via npm install --save-dev electron-rebuild
and attempted to use via ./node_modules/.bin/electron-rebuild
.
This only resulted in an error message:
Unable to find electron-prebuilt’s version number, either install it or specify an explicit version
Issue Analytics
- State:
- Created 8 years ago
- Comments:10 (2 by maintainers)
Top Results From Across the Web
Unable to find electron-prebuilt's version number.
I am trying to use bluetooth-serial-port native module in electron (atom-shell). I did the following. Installed electron-prebuilt. npm install ...
Read more >Unable to find electron-prebuilt's version number · Issue #35
Good news! There are two ways to fix this: Install electron-prebuilt as a dependency; Specify the version of Electron you're using ...
Read more >Quasar Framework, Electron, And Serialport: Indexof Error
I want to communicate with com port using the electronvue and serialport.js. I can't import. I'm getting an error. Uncaught TypeError: Cannot read...
Read more >packages · knowledge - Yoshua Wuyts
... tweenr - Minimal tweening engine which operates on numbers and arrays ... errorify — Browserify plugin to write failed build error messages...
Read more >All of The Documentation - Electron | PDF | Mac Os
On Windows, you have to parse process.argv (in the main process) to get the lepath. ... version String (optional) - The apps build...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
+1
It appears that this package requires
npm install electron-prebuilt --save-dev
before it will work as described in its docs. Shouldn’t it be listed in itspeerDependencies
then?