我正在努力完成微服务,并希望使用fastify-env库验证我的env输入并在整个应用程序中提供默认值。
const fastify = require('fastify')()
fastify.register(require('fastify-env'), {
schema: {
type: 'object',
properties: {
PORT: { type: 'string', default: 3000 }
}
}
})
console.log(fastify.config) // undefined
const start = async opts => {
try {
console.log('config', fastify.config) // config undefined
await fastify.listen(3000, '::')
console.log('after', fastify.config) // after { PORT: '3000' }
} catch (err) {
fastify.log.error(err)
process.exit(1)
}
}
start()
如何在服务器启动之前使用fastify.config
对象?
答案 0 :(得分:2)
使用ready()
https://www.fastify.io/docs/latest/Server/#ready等待所有插件被加载。然后使用您的配置变量调用listen()
。
try {
await fastify.ready(); // will load all plugins
await fastify.listen(...);
} catch (err) {
fastify.log.error(err);
process.exit(1);
}
答案 1 :(得分:-1)
fastify.register
以异步方式AFAIK加载插件。如果您想立即使用特定插件中的功能,请使用:
fastify
.register(plugin)
.after(() => {
// This particular plugin is ready!
});