vite-plugin-node icon indicating copy to clipboard operation
vite-plugin-node copied to clipboard

Vite plugin to run your node dev server with HMR!

Results 60 vite-plugin-node issues
Sort by recently updated
recently updated
newest added

Vite 3.0 was released on 07/13/2022. https://github.com/vitejs/vite/releases/tag/v3.0.0 https://vitejs.dev/blog/announcing-vite3.html vite-plugin-node currently cannot be used with Vite 3.0 because `"vite":"^2.9.8"` is specified in peerDependencies. https://github.com/axe-me/vite-plugin-node/blob/652bec7484b8a9122df3cd11cf10dd6152960607/packages/vite-plugin-node/package.json#L40 It would be great if you could...

[this part is due to me forgetting `if (import.meta.env.PROD)` around the bootstrap function] [to jump to the issue](https://github.com/axe-me/vite-plugin-node/issues/50#issuecomment-1170467784) As you can see I get all the init messages twice 🤔....

Related SO thread: https://stackoverflow.com/questions/73284703 I've been trying to get this combination working for a while and fiddled with versions & compatibilities issue until I've hit this brick wall. I've created...

Reproduction: https://github.com/stevefan1999-personal/vite-plugin-node/tree/repo-graphql-failure/examples/nest Log: ``` > [email protected] dev > vite vite v2.9.14 dev server running at: > Local: http://localhost:3000/ > Network: use `--host` to expose ready in 238ms. reflect-metadata doesn't appear...

Hi, would love to have this working with https://vite-plugin-ssr.com/ from the first try I wasn't able to get it working all togeter :( I wish. this functionality would be available...

I am having a usecase where I want to run vite using ttypescript. even SWC does not support the stuff I want to do with decorators. You can see it...

I've clone the repo, and cd example directory(express),and install packages, and `npm run dev`, when I try to entry `http://localhost:3699/ip`, I got error: ReferenceError: fetch is not defined

Followed the guide 100%. for Express. Executed npm run dev. Server started successfully. Made a change in the code. Browser content didn't change. Hit F5 on browser to refresh the...

Repro: https://github.com/kasbah/vite-plugin-node-example When I run: ``` npx vite ``` I get ``` ✘ [ERROR] No matching export in "browser-external:child_process" for import "fork" node_modules/bullmq/dist/esm/classes/child-pool.js:1:9: 1 │ import { fork } from...

Using the following code, I cannot establish websocket connections: ```typescript import Fastify from "fastify"; import wsPlugin from "fastify-websocket"; export const server = Fastify(); server.register(wsPlugin); server.get("/", { websocket: true }, (ws,...