<< return
Finding the electron-in-chromium folder instead of an electron folder in node_modules is not correct. This indicates a problem with the Electron installation or potentially the version of Electron you have in your devDependencies. Very old electron versions were installed as electron-prebuilt in the node_modules folder. Modern electron versions use the electron folder to contain binary files.
The electron-in-chromium folder might appear due to dependencies of other packages that embed Electron in Chromium or attempt to bundle Electron differently, or by outdated Electron packages and outdated installation processes. By cleaning up, specifying a correct and more modern Electron version, and reinstalling, you ensure that Electron is installed directly as expected by npm and Electron applications.
So,
- 1. Remove electron-in-chromium: Delete the electron-in-chromium folder, and if there is an electron folder delete that as well. Also, remove node_modules and package-lock.json:
# rm -rf node_modules package-lock.json electron-in-chromium
# npm install --save-dev electron@<version>
Replace <version> with the major version number. If using minor versions such as 33.3.0 replace <version> with 33.3.0. If not using the major version number, make sure to always install the latest patch version for each minor version if sticking with older Electron versions, as older versions might have security issues addressed by later patches.
# .\node_modules\.bin\electron -v
Ensure that the path to the electron executable is correct. If the electron binary is in place, then it should display the installed Electron version.
If you get an error, then something is still wrong with the installation process. It's likely an npm or system configuration problem.
Electron context:
- (2024) Electron video player with cashing and CSP policy #Electron #Video
- (2024) My workable project template for Angular Electron #Angular #Electron
- (2024) Node PostProcessor step for Angular and Electron. #Angular #Electron #NodeBackend
- (2022) Electron learning #FrontLearning #Electron
- ...
- (2024) Browser Window Options in Electron application.
- (2024) Important Parameters in Electron application.
- (2024) Core Features and Concepts in Electron application.
- (2024) Crucial Programming Techniques in Electron application.
- (2024) Main Process vs. Renderer Process in Electron application.
- (2024) Inter-Process Communication in Electron application.
- (2024) Asynchronous Operations in Electron application.
- (2024) Databases in Electron application.
- (2024) MySQL and PostgreSQL integration in Electron application.
- (2024) LocalStorage in Electron application.
- (2024) Native Modules in Electron application.
- (2024) Electron APIs in Electron application.
- (2024) Multi-window Applications in Electron application.
- (2024) Packaging and Distribution in Electron application.
- (2024) Node Integration in Electron application.
- (2024) Memory Leaks in Electron application.
- (2024) Code Security in Electron application.
- (2024) Browser Automation in Electron application.
- (2024) Testing in Electron application.
- (2024) Monetization in Electron application.
AngularElectron context:
Front context:
- (2025) My new project with WebRTC, what is WebRTC? #Android #Front
- (2024) Encapsulate HTML, CSS, and JS to WebComponent. Shadow DOM. Example of my WebComponent in this blog. #Front
- (2024) My lecture about Javascript (Ukrainian language). #Front
- (2019) Inject OnBegin/OnSuccess/OnFailure custom Javascript code into ASP.NET Ajax tag by Bundle of jquery.unobtrusive-ajax.min.js #Front #JavascriptProjects
- (2017) My site with peer-to-peer communication based on Mizu-Voip library. #Front #Css #Voip
- (2017) My solution with Bootstrap modal window and Classic ASP.NET. #AspNetClassic #Front #Css
- (2016) SPA-page на Classic ASP.NET та jQuery. #Front #AspNetClassic
- (2015) Cropper світлин сайту. #Front #AspNetMvc #Css
- (2015) Перемикач мови для сайту. #Front #AspNetMvc
- (2012) Календарики (datapicker), применяемые мною на jQuery / MS AJAX / JavaScript / Flex / MONO. #Front
- (2012) Заполнение связанных списков на MS AJAX и jQuery. #Front #AspNetClassic
- (2012) Применение jQuery-UI-dialog в ASP.NET #Front #AspNetClassic
- (2011) Как с помощью jQuery сделать флеш-ролик резиновым #Front #Flex
- (2011) AJAX подсказка/автозаполнение на jQuery #Front
- (2010) Flex, Java, Angular, Android. #SectionFront
- (2009) Язва-скрипт в ASP.NET. #Front
- (2009) Счетчики на Web-страничках. #AspNetClassic #Front

|