You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/guide/api-environment-runtimes.md
+89-78
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,8 @@ function createWorkedEnvironment(
29
29
dev: {
30
30
createEnvironment(name, config) {
31
31
returncreateWorkerdDevEnvironment(name, config, {
32
-
hot: customHotChannel(),
32
+
hot: true,
33
+
transport: customHotChannel(),
33
34
})
34
35
},
35
36
},
@@ -82,29 +83,26 @@ A Vite Module Runner allows running any code by processing it with Vite plugins
82
83
One of the goals of this feature is to provide a customizable API to process and run code. Users can create new environment factories using the exposed primitives.
Vite exports `ESModulesEvaluator` that implements this interface by default. It uses `new AsyncFunction` to evaluate code, so if the code has inlined source map it should contain an [offset of 2 lines](https://tc39.es/ecma262/#sec-createdynamicfunction) to accommodate for new lines added. This is done automatically by the `ESModulesEvaluator`. Custom evaluators will not add additional lines.
247
240
248
-
## RunnerTransport
241
+
## `ModuleRunnerTransport`
249
242
250
243
**Type Signature:**
251
244
252
245
```ts
253
-
interfaceRunnerTransport {
254
-
/**
255
-
* A method to get the information about the module.
Transport object that communicates with the environment via an RPC or by directly calling the function. By default, you need to pass an object with `fetchModule` method - it can use any type of RPC inside of it, but Vite also exposes bidirectional transport interface via a `RemoteRunnerTransport` class to make the configuration easier. You need to couple it with the `RemoteEnvironmentTransport` instance on the server like in this example where module runner is created in the worker thread:
257
+
Transport object that communicates with the environment via an RPC or by directly calling the function. When `invoke` method is not implemented, the `send` method and `connect` method is required to be implemented. Vite will construct the `invoke` internally.
258
+
259
+
You need to couple it with the `HotChannel` instance on the server like in this example where module runner is created in the worker thread:
`RemoteRunnerTransport` and `RemoteEnvironmentTransport` are meant to be used together, but you don't have to use them at all. You can define your own function to communicate between the runner and the server. For example, if you connect to the environment via an HTTP request, you can call `fetch().json()` in `fetchModule` function:
342
+
A different example using an HTTP request to communicate between the runner and the server:
This interface defines how HMR communication is established. Vite exports `ServerHMRConnector` from the main entry point to support HMR during Vite SSR. The `isReady` and `send` methods are usually called when the custom event is triggered (like, `import.meta.hot.send("my-event")`).
364
-
365
-
`onUpdate` is called only once when the new module runner is initiated. It passed down a method that should be called when connection triggers the HMR event. The implementation depends on the type of connection (as an example, it can be `WebSocket`/`EventEmitter`/`MessageChannel`), but it usually looks something like this:
But note that for HMR support, `send` and `connect` methods are required. The `send` method is usually called when the custom event is triggered (like, `import.meta.hot.send("my-event")`).
372
383
373
-
The callback is queued and it will wait for the current update to be resolved before processing the next update. Unlike the browser implementation, HMR updates in a module runner will wait until all listeners (like, `vite:beforeUpdate`/`vite:beforeFullReload`) are finished before updating the modules.
384
+
Vite exports `createServerHotChannel` from the main entry point to support HMR during Vite SSR.
0 commit comments