跳转至内容
There is a version suitable for your browser's language settings. Would you like to go to the english language of the site?
主页文档

启动项

H1

启动项,用于在系统启动时执行特定任务。

/milkio.ts 文件中,您可以通过 createMilkioApp 函数的 bootstraps 选项来启动应用程序。这个选项接受一个数组,您可以在这个数组中放置任意数量的普通函数,这些函数可以是同步的,也可以是异步的。

export const milkio = await createMilkioApp({
bootstraps: [helloWorld],
});
async function helloWorld() {
console.log("Hello World!");
}

在启动过程中,bootstraps 数组中列出的所有函数将同时运行(确实,它们是并行执行的)。只有当所有这些函数执行完毕后,启动阶段才会结束。如果您希望 bootstraps 中的函数按照特定顺序执行,可以利用 Middleware 功能来实现这一点。