Security News
GitHub Removes Malicious Pull Requests Targeting Open Source Repositories
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
vite-plugin-electron-renderer
Advanced tools
Support use Node.js API in Electron-Renderer
English | 简体中文
npm i vite-plugin-electron-renderer -D
import renderer from 'vite-plugin-electron-renderer'
export default {
plugins: [
renderer(),
],
}
import renderer from 'vite-plugin-electron-renderer'
export default {
plugins: [
renderer({
nodeIntegration: true,
}),
],
}
// e.g. - renderer.js
import { readFile } from 'fs'
import { ipcRenderer } from 'electron'
readFile('foo.txt')
ipcRenderer.on('event-name', () => {/* something */})
import renderer from 'vite-plugin-electron-renderer'
export default {
plugins: [
renderer({
nodeIntegration: true,
optimizeDeps: {
resolve(args) {
if (args.path === 'serialport') {
return { platform: 'node' } // specify as `node` platform
}
},
},
}),
],
}
renderer(options: RendererOptions)
export interface RendererOptions {
/**
* @default false
*/
nodeIntegration?: boolean
/**
* Pre-Bundling modules for Electron Renderer process.
*/
optimizeDeps?: {
/**
* Explicitly tell the Pre-Bundling how to work.
*/
resolve?: (args: import('esbuild').OnResolveArgs) =>
| void
| { platform: 'browser' | 'node' }
| Promise<void | { platform: 'browser' | 'node' }>
}
}
Load Electron and Node.js cjs-packages/builtin-modules (Schematic)
┏————————————————————————————————————————┓ ┏—————————————————┓
│ import { ipcRenderer } from 'electron' │ │ Vite dev server │
┗————————————————————————————————————————┛ ┗—————————————————┛
│ │
│ 1. Pre-Bundling electron module into │
│ node_modules/.vite-electron-renderer/electron │
│ │
│ 2. HTTP(Request): electron module │
│ ————————————————————————————————————————————————> │
│ │
│ 3. Alias redirects to │
│ node_modules/.vite-electron-renderer/electron │
│ ↓ │
│ const { ipcRenderer } = require('electron') │
│ export { ipcRenderer } │
│ │
│ 4. HTTP(Response): electron module │
│ <———————————————————————————————————————————————— │
│ │
┏————————————————————————————————————————┓ ┏—————————————————┓
│ import { ipcRenderer } from 'electron' │ │ Vite dev server │
┗————————————————————————————————————————┛ ┗—————————————————┛
rollupOptions.external
.rollupOptions.output.format
to cjs
(If it you didn't explicitly set it).import { ipcRenderer } from 'electron'
↓
const { ipcRenderer } = require('electron')
In general. Vite will pre-bundle all third-party modules in a Web-based usage format, but it can not adapt to Electron Renderer process especially C/C++ modules. So we must be make a little changes for this.
When a module detected as a cjs
module. it will be pre-bundle like the following.
const lib = require("cjs-module");
export const member = lib.member;
export default (lib.default || lib);
By the way. If an npm package is a pure ESM format package, and the packages it depends on are also in ESM format, then put it in optimizeDeps.exclude
and it will work normally.
See the explanation
dependencies
vs devDependencies
Classify | e.g. | dependencies | devDependencies |
---|---|---|---|
Node.js C/C++ native modules | serialport, sqlite3 | ✅ | ❌ |
Node.js CJS packages | electron-store | ✅ | ✅ |
Node.js ESM packages | execa, got, node-fetch | ✅ | ✅ (Recommend) |
Web packages | Vue, React | ✅ | ✅ (Recommend) |
devDependencies
?Doing so will reduce the size of the packaged APP by electron-builder.
0.13.7 (2023-03-25)
__esModule
cjs
, external
. add freeze
, ignore
.resolve.alias
commentscjs
format by default with improvements to esm
.external
to be compatible with the esm
build format.FAQs
Support use Node.js API in Electron-Renderer
The npm package vite-plugin-electron-renderer receives a total of 7,266 weekly downloads. As such, vite-plugin-electron-renderer popularity was classified as popular.
We found that vite-plugin-electron-renderer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
GitHub removed 27 malicious pull requests attempting to inject harmful code across multiple open source repositories, in another round of low-effort attacks.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.