DevServer and HMR
Farm provides DevServer
and enabled HMR
in development
by default.
Configuring Dev Serverâ
Farm provides a lot of useful options to configure dev server. All dev server options are configured by server
.
import { defineConfig } from '@farmfe/core';
export default defineConfig({
server: {
port: 9801,
cors: true,
proxy: {
// ...
},
open: true,
}
})
If you are built tools on top of farm, refer to Javascript API for creating a Dev Server programmatically.
Dev Server Middlewaresâ
You can use middlewares
to handle dev server requests. For example:
import { Middleware } from 'koa';
import { Server, defineConfig } from '@farmfe/core';
export function headers(devSeverContext: Server): Middleware {
const { config } = devSeverContext;
if (!config.headers) return;
return async (ctx, next) => {
if (config.headers) {
for (const name in config.headers) {
ctx.set(name, config.headers[name] as string | string[]);
}
}
await next();
};
}
export default defineConfig({
server: {
middlewares: [
headers
]
}
})
In above example, a Farm middleware is a function that expose Koa Middleware
. Common Koa middlewares can be used directly, for example:
import { defineConfig } from "@farmfe/core";
import compression from 'koa-compress';
export default defineConfig({
server: {
middlewares: [
compression
]
},
});
Hot Module Replacement(HMR)â
Farm provides a Vite-compatible HMR API. If you are framework authors, leverage the API to update your Application instance, precise without reloading the page.
- For React, React Refresh are enabled automatically by official plugins @farmfe/plugin-react.
- For Vue, Solid and other frameworks, it's HMR are supported by there plugins like
@vitejs/plugin-vue
,vite-plugin-solid
and so on.
Farm provides official templates that set all these capabilities up already, create an app via create-farm then all HMR abilities are ready.
- Usually HMR is supported out of box for app users, refer to Vite-compatible HMR API if you are framework author.
- Refer to HMR Options for how to configuring HMR.