vite-plugin-esmodule
Build ES module to CommonJs module for Node.js
English | 简体中文
Why
When ES module such as execa, node-fetch, file-type used in the Node.js project, we should compile them into CommonJs modules to ensure that they can work
🚧 Warning
The plugin only work in the vite build
phase
The Plugin built NPM Packages use Vite by default, of course you can specify use Webpack by options.webpack
If some NPM Packges have problems after being built with vite, please choose to build with options.webpack
Usage
Take execa, node-fetch and file-type as examples
import esmodule from 'vite-plugin-esmodule'
export default {
plugins: [
esmodule([
'execa',
'node-fetch',
{ 'file-type': 'file-type/index.js' },
]),
],
}
import {execa} from 'execa';
const {stdout} = await execa('echo', ['unicorns']);
console.log(stdout);
See the test cases
API
esmodule(modules[,options])
modules: ES module name list
modules: (string | { [module: string]: string })[]
options:
options?: WebpackOptions | ViteOptions
export interface WebpackOptions {
webpack?: true | ((config: Configuration) => Configuration | void | Promise<Configuration | void>);
vite: never;
}
export interface ViteOptions {
vite?: true | ((config: UserConfig) => UserConfig | void | Promise<UserConfig | void>);
webpack: never;
}
How to work
This plugin just wraps vite-plugin-optimizer