Vite plugin to enable your node server HMR
npm install vite-plugin-node

> A vite plugin to allow you to use vite as node dev server.
- All the perks from Vite plus:
- Node server HMR! (hot module replacement)
- Support Express, Fastify, Koa and Nest out of the box
- Support Custom Request Adapter
- You can choose to use esbuild or swc to compile your typescript files
---
1. Install vite and this plugin with your favorite package manager, here use npm as example:
``bash`
npm install vite vite-plugin-node -D
Vite version and package version match table:
| Vite | Plugin |
|--------------|----------------|
| 7.x.x | 7.x.x |
| 6.x.x | 5.x.x |
| 5.x.x | 4.x.x |
| 4.x.x | 3.x.x |
| 3.x.x | <=2.x.x |
2. Create a vite.config.ts file in your project root to config vite to actually use this plugin:
`ts
import { defineConfig } from 'vite';
import { VitePluginNode } from 'vite-plugin-node';
export default defineConfig({
// ...vite configures
server: {
// vite server configs, for details see vite doc
port: 3000
},
plugins:
...VitePluginNode({
// Nodejs native Request adapter
// currently this plugin support 'express', 'nest', 'koa' and 'fastify' out of box,
// you can also pass a function if you are using other frameworks, see Custom Adapter section
adapter: 'express',
// tell the plugin where is your project entry
appPath: './app.ts',
// Optional, default: 'viteNodeApp'
// the name of named export of you app from the appPath file
exportName: 'viteNodeApp',
// Optional, default: false
// if you want to init your app on boot, set this to true
initAppOnBoot: false,
// Optional, default: false
// if you want to reload your app on file changes, set this to true, rebounce delay is 500ms
reloadAppOnFileChange: false,
// Optional, default: 'esbuild'
// The TypeScript compiler you want to use
// by default this plugin is using vite default ts compiler which is esbuild
// 'swc' compiler is supported to use as well for frameworks
// like Nestjs (esbuild dont support 'emitDecoratorMetadata' yet)
// you need to INSTALL @swc/core as dev dependency if you want to use swc
tsCompiler: 'esbuild',
// Optional, default: {
// jsc: {
// target: 'es2019',
// parser: {
// syntax: 'typescript',
// decorators: true
// },
// transform: {
// legacyDecorator: true,
// decoratorMetadata: true
// }
// }
// }
// swc configs, see [swc doc
swcOptions: {}
})
],
});
`
3. Update your server entry to export your app named viteNodeApp or the name you configured.
`ts
const app = express();
// your beautiful code...
if (import.meta.env.PROD)
app.listen(3000);
export const viteNodeApp = app;
`
#### More Examples:
- KoaJs
- Cloud Functions
- Fastify
- NestJs
- Apollo Server
4. Add a npm script to run the dev server:
`json`
"scripts": {
"dev": "vite"
},
5. Run the script! npm run dev
If your favorite framework not supported yet, you can either create an issue to request it or use the adapter option to tell the plugin how to pass down the request to your app. You can take a look how the supported frameworks implementations from the ./src/server folder.
Example:
`ts
import { defineConfig } from 'vite';
import { VitePluginNode } from 'vite-plugin-node';
export default defineConfig({
plugins: [
...VitePluginNode({
adapter({ app, server, req, res, next }) {
app(res, res);
},
appPath: './app.ts'
})
]
});
`
`json`
"scripts": {
"build": "vite build"
},
For more build config please check vite doc
> Note: By default, starting from vite v3, the ssr buildle will be in esm format. if you want to build cjs, add ssr: { format: 'cjs' }` to your vite config.
See the examples folder.
---
While frontend development tooling is evolving rapidly in recent years, backend DX is still like in stone age. No hot module replacement; Typescript recompiling slow as funk; Lack of plugin system etc. Thanks to Vite.js created by Evan You (A.K.A creator of vue.js; my biggest idol developer), makes all those dreams for backend development come true!
---
Vite by design has a middleware mode, which allows us to use it programmatically inside other modules. It's originally made for SSR, so that for each request, vite can load the renderer and render the latest changes you made to your app (
You may ask, isn't super slow, since it re-compiles/reloads the entire app? The answer is NO, because vite is smart. It has a builtin module graph as a cache layer, the graph is built up the first time your app loads. After that, when you update a file, vite will only invalidate that one and its parent modules, so that for next request, only those invalidated modules need to be re-compiled which is super fast thanks to esbuild or swc.
As this plugin just fresh developed, there are still lots ideas need to be implemented, including:
- [ ] Test with a large node project, I need y'all helps on this!
- [ ] Unit tests
Please create an issue if you found any bugs, to help me improve this project!