Remix 的设计理念是让您拥有自己的服务器,但如果您不想设置服务器,可以使用 Remix 应用服务器。这是一个生产就绪,但基于 Express 构建的基本 Node.js 服务器。
按照设计,我们不提供自定义 Remix 应用服务器的选项,因为如果您需要自定义底层的 express
服务器,我们更希望您完全管理服务器,而不是创建一个抽象来处理您可能需要的所有可能的自定义项。如果您发现需要自定义它,您应该改用 @remix-run/express
适配器。
您可以在 packages/remix-serve/cli.ts 中查看底层的 express
服务器配置。默认情况下,它使用以下 Express 中间件(请参阅其文档了解默认行为)
HOST
环境变量您可以通过 process.env.HOST
配置 Express 应用的主机名,该值将在启动服务器时传递给内部的 app.listen
方法。
HOST=127.0.0.1 npx remix-serve build/index.js
remix-serve <server-build-path>
# e.g.
remix-serve build/index.js
PORT
环境变量您可以使用环境变量更改服务器的端口。
PORT=4000 npx remix-serve build/index.js
根据 process.env.NODE_ENV
,服务器将在开发或生产模式下启动。
server-build-path
需要指向在 remix.config.js
中定义的 serverBuildPath
。
因为只有构建工件(build/
,public/build/
)需要部署到生产环境,所以不能保证 remix.config.js
在生产环境中可用,因此您需要使用此选项告诉 Remix 您的服务器构建在哪里。
在开发过程中,remix-serve
将通过清除每个请求的 require
缓存来确保运行最新的代码。这会对您的代码产生一些影响,您可能需要注意
模块范围内的任何值都将被“重置”
// this will be reset for every request because the module cache was
// cleared and this will be required brand new
const cache = new Map();
export async function loader({
params,
}: LoaderFunctionArgs) {
if (cache.has(params.foo)) {
return json(cache.get(params.foo));
}
const record = await fakeDb.stuff.find(params.foo);
cache.set(params.foo, record);
return json(record);
}
如果你需要在开发环境中保留缓存的变通方法,可以在你的服务器中设置一个单例。
任何模块的副作用都会保留!这可能会导致问题,但无论如何都应该尽量避免。
import { json } from "@remix-run/node"; // or cloudflare/deno
// this starts running the moment the module is imported
setInterval(() => {
console.log(Date.now());
}, 1000);
export async function loader() {
// ...
}
如果你需要以产生这类模块副作用的方式编写代码,你应该设置自己的 @remix-run/express 服务器,并在开发环境中使用像 pm2-dev 或 nodemon 这样的工具,以便在文件更改时重启服务器。
在生产环境中,这种情况不会发生。服务器启动后就结束了。