Gathering detailed insights and metrics for electron-devtools-vendor
Gathering detailed insights and metrics for electron-devtools-vendor
Gathering detailed insights and metrics for electron-devtools-vendor
Gathering detailed insights and metrics for electron-devtools-vendor
npm install electron-devtools-vendor
Typescript
Module System
Node Version
NPM Version
JavaScript (95.87%)
CSS (3.48%)
HTML (0.66%)
Total Downloads
21,058
Last Day
19
Last Week
145
Last Month
345
Last Year
7,273
MIT License
13 Stars
43 Commits
3 Forks
5 Watchers
1 Branches
1 Contributors
Updated on Apr 18, 2025
Minified
Minified + Gzipped
Latest Version
3.0.0
Package Id
electron-devtools-vendor@3.0.0
Unpacked Size
40.84 MB
Size
12.21 MB
File Count
683
NPM Version
10.5.0
Node Version
20.12.0
Published on
Jun 17, 2024
Cumulative downloads
Total Downloads
Last Day
533.3%
19
Compared to previous day
Last Week
130.2%
145
Compared to previous week
Last Month
14.6%
345
Compared to previous month
Last Year
-3.8%
7,273
Compared to previous year
5
when using this library, you will not see the following warning:
1Unrecognized manifest key 'browser_action'. 2Unrecognized manifest key 'minimum_chrome_version'. 3Unrecognized manifest key 'short_name'. 4Unrecognized manifest key 'update_url'. 5Permission 'activeTab' is unknown or URL pattern is malformed. 6Cannot load extension with file or directory name _metadata. Filenames starting with "_" are reserved for use by the system.
it will not download the crx to a directory on the current computer, but will contain the source code of the plugin directly in the node_modules
Don't worry about the size of your project, as you should only use it in a development environment, and even if you need to use it in a formal environment, we have
tree snaking
to help.
because the plugin source code is in node_modules
, it will have a greater success rate of downloading.
1$ yarn add electron-devtools-vendor -D 2// or 3$ npm install electron-devtools-vendor -D 4// or 5$ pnpm add electron-devtools-vendor -D
1const { session } = require("electron"); 2 3if (process.env.NODE_ENV === "development") { 4 const { REACT_DEVELOPER_TOOLS } = require("electron-devtools-vendor"); 5 session.defaultSession.loadExtension(REACT_DEVELOPER_TOOLS, { 6 allowFileAccess: true, 7 }); 8}
name | import name | hash |
---|---|---|
REACT_DEVELOPER_TOOLS | react-developer-tools | fmkadmapgofadopljbjfkapdkoienihi |
EMBER_INSPECTOR | ember-inspector | bmdblncegkenkacieihfhpjfppoconhi |
VUEJS_DEVTOOLS | vuejs-devtools | nhdogjmejiglipccpnnnanhbledajbpd |
REDUX_DEVTOOLS | redux-devtools | lmhkpmbekcpmknklioeibfkpmmfibljd |
APOLLO_DEVELOPER_TOOLS | apollo-developer-tools | jdkknkkbebbapilgoeccciglkfbmbnfm |
MOBX_DEVTOOLS | mobx-devtools | pfgnfdagidkfgccljigdamigbcnndkod |
JQUERY_DEBUGGER | jquery-debugger | dbhhnnnpaeobfddmlalhnehgclcmjimi |
BACKBONE_DEBUGGER | backbone-debugger | bhljhndlimiafopmmhjlgfpnnchjjbhd |
1# this is example 2$ yarn run add fmkadmapgofadopljbjfkapdkoienihi --name react-devtools
Thanks to electron-devtools-installer for the inspiration, it was great but there were a few issues that forced me to develop this project, details can be found at: electron-devtools-installer#200
No vulnerabilities found.
No security vulnerabilities found.