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({
resolve: {
serialport: () => ({ platform: 'node' }), // specify as `node` platform
},
}),
],
}
renderer(options: RendererOptions)
export interface RendererOptions {
/**
* Explicitly tell Vite how to load modules, which is very useful for C/C++ modules.
* Most of the time, you don't need to use it when a module is a C/C++ module, you can load them by return `{ platform: 'node' }`.
*
* If you know exactly how Vite works, you can customize the return snippets.
*
* ```js
* renderer({
* resolve: {
* // Use the serialport(C/C++) module as an example
* serialport: () => ({ platform: 'node' }),
* // Equivalent to
* serialport: () => `const lib = require("serialport"); export default lib.default || lib;`,
* },
* })
* ```
*
* @experimental
*/
resolve?: {
[id: string]: (() => string | { platform: 'browser' | 'node' } | Promise<string | { 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 │
┗————————————————————————————————————————┛ ┗—————————————————┛
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.14 (2023-03-31)
FAQs
Support use Node.js API in Electron-Renderer
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.