electron-devtools-installer | easy way to ensure Chrome DevTools extensions | Browser Plugin library

 by   MarshallOfSound TypeScript Version: v3.2.0 License: MIT

kandi X-RAY | electron-devtools-installer Summary

kandi X-RAY | electron-devtools-installer Summary

electron-devtools-installer is a TypeScript library typically used in Plugin, Browser Plugin, Electron applications. electron-devtools-installer has no bugs, it has no vulnerabilities, it has a Permissive License and it has medium support. You can download it from GitHub.

This is an easy way to install DevTool extensions into Electron. You shouldn't have to mess around with downloading the extension, finding the right folder and then configuring the path for everyone's machines.
Support
    Quality
      Security
        License
          Reuse

            kandi-support Support

              electron-devtools-installer has a medium active ecosystem.
              It has 1020 star(s) with 144 fork(s). There are 15 watchers for this library.
              OutlinedDot
              It had no major release in the last 12 months.
              There are 38 open issues and 93 have been closed. On average issues are closed in 203 days. There are 31 open pull requests and 0 closed requests.
              It has a neutral sentiment in the developer community.
              The latest version of electron-devtools-installer is v3.2.0

            kandi-Quality Quality

              electron-devtools-installer has 0 bugs and 0 code smells.

            kandi-Security Security

              electron-devtools-installer has no vulnerabilities reported, and its dependent libraries have no vulnerabilities reported.
              electron-devtools-installer code analysis shows 0 unresolved vulnerabilities.
              There are 0 security hotspots that need review.

            kandi-License License

              electron-devtools-installer is licensed under the MIT License. This license is Permissive.
              Permissive licenses have the least restrictions, and you can use them in most projects.

            kandi-Reuse Reuse

              electron-devtools-installer releases are available to install and integrate.
              Installation instructions, examples and code snippets are available.

            Top functions reviewed by kandi - BETA

            kandi's functional review helps you automatically verify the functionalities of the libraries and avoid rework.
            Currently covering the most popular Java, JavaScript and Python libraries. See a Sample of electron-devtools-installer
            Get all kandi verified functions for this library.

            electron-devtools-installer Key Features

            No Key Features are available at this moment for electron-devtools-installer.

            electron-devtools-installer Examples and Code Snippets

            No Code Snippets are available at this moment for electron-devtools-installer.

            Community Discussions

            QUESTION

            Npm dependency conflict
            Asked 2021-Nov-01 at 04:56

            I am working on a project with Vue. I run Vue Cli and I added the Typescript plugin. I have several vulnerabilities. When I run npm audit fix it can't resolve the dependency conflict:

            ...

            ANSWER

            Answered 2021-Nov-01 at 04:56

            Your package.json has a mix of dev dependencies with versions that start with ~ and ones that start with ^. That's probably because some dev dependencies were installed with older versions of npm that defaulted to ~ which is more conservative than ^. As a first step, change the 8 ~ versions to ^, remove node_modules and (if it exists) package-lock.json and run npm install again. I tested this locally and it didn't reduce the number of vulnerabilities reported by npm audit but it did reduce the number of outdated packages which is a step in the right direction.

            Let's simplify things by only looking at the audit results for your production dependencies and ignoring (at least for the moment) issues in your dev dependencies. npm audit --only=prod reports only 5 issues, all moderate. Running npm audit --only=prod --force fix updates @capacitor/cli from 2.x to 3.x. That's a breaking change so you'll want to test it, but if that works for you, congratulations because npm audit --only=prod reports no vulnerabilities.

            At this point, you could possibly choose not to worry much about the other issues reported by npm audit. However if you wanted to fix them, here is the potentially tedious/arduous path I'd recommend:

            • Do a manual audit of all of your dev dependencies to make sure you aren't including things you don't need. Maybe you have things that are installed that you aren't using. Uninstall them. Maybe you have things installed that are nice-to-have but you don't really need. Consider uninstalling them too.
            • Run npm outdated to see what could be manually updated via a breaking change. Try doing those updates.

            Source https://stackoverflow.com/questions/69773818

            QUESTION

            Error with electron's puppeteer. " equire is not defined" and "__dirname is not defined"
            Asked 2021-May-13 at 06:03

            I'm trying to create an Electron application using the Vue CLI package in npm, but in the process of using puppeteer, I get the following error message.

            ...

            ANSWER

            Answered 2021-May-13 at 06:03

            Make sure you have contextIsolation set to false in your BrowserWindow settings.

            Like this:

            Source https://stackoverflow.com/questions/67512943

            QUESTION

            Vue Devtools Not Loading With Vue Electron Builder
            Asked 2021-May-04 at 02:42

            I'm creating an Electron / Vue application, and I cannot get the Vue Devtools to load in the Electron app window. This is my first time using Electron with Vue, and I'm not sure if there's a dependency issue that I'm not aware of.

            I came across this Github issue, but my versions of Electron and vue-cli-plugin-electron are higher, and already include the updated code that is being discussed.

            I also tried the following snippet (from here):

            ...

            ANSWER

            Answered 2021-May-04 at 02:31

            Don't use timeouts, wait for the dom-ready event instead. I imagine setting it up like this will get everything to work.

            Related fix for Redux devtools.

            Source https://stackoverflow.com/questions/67358885

            QUESTION

            Electron doesn't launch app after run it in development
            Asked 2021-Apr-29 at 16:59

            I Know that there is a lot of topic about this, but since none of them work, I must make a new one, I'm quite confused as why my electron app doesn't launch when I used yarn dev for my project, but when my friends try it, in his laptop, he can run and the apps launch normally without any problem, so Is there anyone here ever face the same problem with me? if there is someone, how can you solve this problem?

            this is what my terminal looks like:

            for information I used:

            ...

            ANSWER

            Answered 2021-Apr-28 at 12:55

            This may be a silly answer. Try checking whether the task is running or any other programs interfereing the app, like an antivirus.

            Source https://stackoverflow.com/questions/67296408

            QUESTION

            How do I use Redux Dev Tools in Electron?
            Asked 2021-Apr-22 at 05:10

            So the Redux tab is added to Chome devtools, but when I click on the tab it displays the message No store found. Make sure to follow the instructions.. I also console.logged my state object to check if my store is empty but it's not. I'm on Electron version 12.0.4 and my operating system is Arch Linux.

            Here's the block of code from my main.js file:

            ...

            ANSWER

            Answered 2021-Apr-22 at 05:10

            Give this a try. The trick I believe is that you need to install and then open (if you want) the dev tools after your DOM is ready or else you'll get errors littered in your console window.

            electron v12.0.5
            electron-devtools-installer v3.2.0

            Source https://stackoverflow.com/questions/67192376

            QUESTION

            How to set application icon in eletron-vue js
            Asked 2021-Apr-11 at 18:17

            I am working with electron-vue js for building cross platform desktop app. I want to set custom icon when i make build file and want to add product name on app. But when i set custom icon, it work perfect in locally but when make it build then not work correctly. It give an error default Electron icon is used reason=application icon is not set.

            Here is Background.js file

            ...

            ANSWER

            Answered 2021-Apr-11 at 18:17

            When we work in electron vue js. we add new file vue.config.js and paste these line of code.

            Source https://stackoverflow.com/questions/67003013

            QUESTION

            Can't compile sqlite3 as a native addon, Electron React Boilerplate project
            Asked 2021-Mar-10 at 22:12

            I'm building a project based off the Electron React Boilerplate project. I am running MacOS 10.15.7 and node v14.15.1.

            I'm trying to install sqlite3 package. Since it's a native dependency, I ran yarn add sqlite3 inside the src/ directory, like it says to do here. The compilation fails with the following output:

            ...

            ANSWER

            Answered 2021-Mar-10 at 22:12

            I downgraded the sqlite3 package to v5.0.0 and it rebuilt correctly. Hope this helps anyone else with the same issue.

            Source: nodejs electronjs sqlite3 - use of undeclared identifier 'napi_is_detached_arraybuffer'

            Source https://stackoverflow.com/questions/66466890

            QUESTION

            When vue template components are generated dynamically, "v-rating" is not recognized
            Asked 2021-Feb-22 at 16:16

            I made a Vue template component that draws a "v-rating" on a card. And, registed this component in "App.vue" and write the "CardTest" tag, the "v-rating" was displayed correctly.

            card-test.vue

            ...

            ANSWER

            Answered 2021-Feb-22 at 16:16

            It seems $vuetify is not defined on the dynamically generated component. A workaround is to set it before mounting:

            Source https://stackoverflow.com/questions/66318911

            QUESTION

            Why am I getting "Definition for rule 'import/no-extraneous-dependencies' was not found" when running ESLint?
            Asked 2021-Jan-30 at 06:25

            I'm working on an Electron app with React and I'm using Typescript, Webpack, Babel and ESLint. And for some reason I get in my main.js file, which is my bundled file, the following line:

            ...

            ANSWER

            Answered 2021-Jan-30 at 06:25

            The eslint . command will run the linting on all the files including the bundled scripts files too. You should add .eslintignore file and ignore the files on which you wish to run the lint.

            In your case ignore add **/*.js to tell eslint ignore linting .js files.

            Source https://stackoverflow.com/questions/65963363

            QUESTION

            Electron production build - ProtocolDeprecateCallback: The callback argument of protocol module APIs is no longer needed
            Asked 2021-Jan-02 at 10:56

            I have a working dev app in electron that will refuse to run in production due to this strange error

            ...

            ANSWER

            Answered 2021-Jan-02 at 10:56

            After a lot of research and debug I've discovered two problems in my code. The first one is that process.env.IS_TEST is not defined, I've removed that line from my code. No problem occur in electron:serve mode. The main problem with the blank screen in production instead, was because win.loadURL(path.join(__dirname, 'index.html')) was trying to load the files ufing the file: protocol instead of the custom one registered from the app. I've reverted back to the original code and used the win.loadURL('app://./index.html') After this little modification the app seems working fine also in production.

            Source https://stackoverflow.com/questions/65531287

            Community Discussions, Code Snippets contain sources that include Stack Exchange Network

            Vulnerabilities

            No vulnerabilities reported

            Install electron-devtools-installer

            You can download it from GitHub.

            Support

            For any new features, suggestions and bugs create an issue on GitHub. If you have any questions check and ask questions on community page Stack Overflow .
            Find more information at:

            Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items

            Find more libraries
            CLONE
          • HTTPS

            https://github.com/MarshallOfSound/electron-devtools-installer.git

          • CLI

            gh repo clone MarshallOfSound/electron-devtools-installer

          • sshUrl

            git@github.com:MarshallOfSound/electron-devtools-installer.git

          • Stay Updated

            Subscribe to our newsletter for trending solutions and developer bootcamps

            Agree to Sign up and Terms & Conditions

            Share this Page

            share link