mirror of
https://github.com/electron-vite/electron-vite-vue
synced 2025-01-19 03:46:35 +08:00
chor(🎯): use Node.js package comments
This commit is contained in:
parent
e0b33df336
commit
d10b5630ac
@ -4,12 +4,14 @@ import { defineConfig } from 'vite-plugin-electron'
|
|||||||
import resolve, { lib2esm } from 'vite-plugin-resolve'
|
import resolve, { lib2esm } from 'vite-plugin-resolve'
|
||||||
import pkg from './package.json'
|
import pkg from './package.json'
|
||||||
|
|
||||||
|
// @ts-ignore
|
||||||
|
const dependencies = Object.keys(pkg.dependencies || {})
|
||||||
|
|
||||||
const external = [
|
const external = [
|
||||||
'electron',
|
'electron',
|
||||||
...builtinModules,
|
...builtinModules,
|
||||||
// @ts-ignore
|
// (🎯-①): For use Node.js package in Electron-Main, Preload-Script
|
||||||
// For use Node.js package in Electron-main, Preload-script
|
...dependencies,
|
||||||
...Object.keys(pkg.dependencies || {}),
|
|
||||||
]
|
]
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
@ -43,39 +45,58 @@ export default defineConfig({
|
|||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
|
||||||
|
/**
|
||||||
|
* ## Why?
|
||||||
|
*
|
||||||
|
* Many times, many people want to use the Node.js package in Electron-Renderer, but it may not work correctly in Vite by default.
|
||||||
|
* 有很多时候很多人想在 Electron-Renderer 中使用 Node.js 模块,但这在 Vite 可能无法正常的构建。
|
||||||
|
*
|
||||||
|
* e.g.
|
||||||
|
* Let's use `serialport` as an example.
|
||||||
|
* 让我们使用 `serialport` 举个例子 🌰。
|
||||||
|
*
|
||||||
|
* ```js
|
||||||
|
* // ❌ May not work correctly in Vite by default.
|
||||||
|
* import serialport, { SerialPort, SerialPortMock } from 'serialport';
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* At this time, we need to use `vite-plugin-resolve` to convert `serialport` to ensure that it works normally.
|
||||||
|
* 这时候我们需要使用 `vite-plugin-resolve` 转换 `serialport`,以确保它能正常工作。
|
||||||
|
*
|
||||||
|
* e.g.
|
||||||
|
*
|
||||||
|
* ```js
|
||||||
|
* // serialport
|
||||||
|
* const _M_ = require('serialport');
|
||||||
|
* const _D_ = _M_.default || _M_;
|
||||||
|
* export { _D_ as default };
|
||||||
|
* export const SerialPort = _M_.SerialPort;
|
||||||
|
* export const SerialPortMock = _M_.SerialPortMock;
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* Try to use again.
|
||||||
|
*
|
||||||
|
* ```js
|
||||||
|
* // ✅ This looks like nothing has changed, but it works normally after the `vite-plugin-resolve` converted.
|
||||||
|
* import serialport, { SerialPort, SerialPortMock } from 'serialport';
|
||||||
|
* ```
|
||||||
|
*
|
||||||
|
* 🚧 It should be noted that the Node.js package, as a dependency of the project, should be placed in `dependencies`; Unless you konw how to build them with Vite.
|
||||||
|
* 需要注意的一点是,Node.js 模块作为项目的依赖,应该放到 `dependencies` 中;除非你知道如何使用 Vite 构建他们。
|
||||||
|
*/
|
||||||
export function useNodeJsInElectronRenderer() {
|
export function useNodeJsInElectronRenderer() {
|
||||||
return resolve(
|
const entries = dependencies.reduce((memo, moduleId) => {
|
||||||
/**
|
const members = Object.keys(require(moduleId))
|
||||||
* Here you can specify other modules
|
const snippet_of_cjs2esm = lib2esm(
|
||||||
* 🚧 You have to make sure that your module is in `dependencies` and not in the` devDependencies`,
|
// CJS lib name
|
||||||
* which will ensure that the electron-builder can package it correctly
|
moduleId,
|
||||||
*/
|
// export memebers
|
||||||
{
|
members,
|
||||||
// If you use the following modules, the following configuration will work
|
{ format: 'cjs' },
|
||||||
// What they have in common is that they will return - ESM format code snippets
|
)
|
||||||
|
return Object.assign(memo, { [moduleId]: snippet_of_cjs2esm })
|
||||||
|
}, {} as Parameters<typeof resolve>[0])
|
||||||
|
|
||||||
// ESM format string
|
// (🎯-②): For use Node.js package in Electron-Renderer
|
||||||
'electron-store': 'export default require("electron-store");',
|
return resolve(entries)
|
||||||
// Use lib2esm() to easy to convert ESM
|
|
||||||
// Equivalent to
|
|
||||||
/**
|
|
||||||
* sqlite3: () => `
|
|
||||||
* const _M_ = require('sqlite3');
|
|
||||||
* const _D_ = _M_.default || _M_;
|
|
||||||
* export { _D_ as default }
|
|
||||||
* `
|
|
||||||
*/
|
|
||||||
sqlite3: lib2esm('sqlite3', { format: 'cjs' }),
|
|
||||||
serialport: lib2esm(
|
|
||||||
// CJS lib name
|
|
||||||
'serialport',
|
|
||||||
// export memebers
|
|
||||||
[
|
|
||||||
'SerialPort',
|
|
||||||
'SerialPortMock',
|
|
||||||
],
|
|
||||||
{ format: 'cjs' },
|
|
||||||
),
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user