等待一个插件完成注册,然后继续注册下一个插件

时间:2019-06-03 14:01:06

标签: node.js fastify

在继续注册下一个插件之前,如何等待一个插件完成注册?

我希望使用使用插件.envfastify-env文件中检索到的凭据来初始化与数据库的连接。

Fastify在加载环境变量之前继续注册fastify-sequelize插件。这会导致错误TypeError: Cannot read property 'DB_NAME' of undefined

'use strict'

const path = require('path')
const AutoLoad = require('fastify-autoload')
const fastifyEnv = require('fastify-env')
const fsequelize = require('fastify-sequelize')

module.exports = function (fastify, opts, next) {
  fastify
    .register(fastifyEnv, {
      schema: {
        type: 'object',
        required: [ 'PORT', 'NODE_ENV', 'DB_NAME', 'DB_USERNAME', 'DB_PASSWORD' ],
        properties: {
          PORT: { type: 'integer' },
          NODE_ENV: { type: 'string' },
          DB_NAME: { type: 'string' },
          DB_USERNAME: { type: 'string' },
          DB_PASSWORD: { type: 'string' }
        }
      },
      dotenv: true
    }).ready((err) => {
      if (err) console.error(err)
      console.log("config ready=",fastify.config) // This works!
    })

  fastify.register(fsequelize, {
      instance: 'sequelize',
      autoConnect: true,
      dialect: 'postgres',
      database: fastify.config.DB_NAME,
      username: fastify.config.DB_USERNAME,
      password: fastify.config.DB_PASSWORD
  })
  fastify.register(AutoLoad, {
    dir: path.join(__dirname, 'plugins'),
    options: Object.assign({}, opts)
  })

  fastify.register(AutoLoad, {
    dir: path.join(__dirname, 'services'),
    options: Object.assign({}, opts)
  })


  next()
}

2 个答案:

答案 0 :(得分:0)

Fastify以相同的方式注册插件和中间件,并按照注册顺序依次同步进行。不应异步要求这些模块。

但是,您可以为每个插件使用许多前后处理程序。

https://github.com/fastify/fastify/blob/master/docs/Lifecycle.md

答案 1 :(得分:0)

您的脚本应该可以运行,我认为问题是由其他原因引起的。

无论如何,您都可以在.after之后使用.register API:

const Fastify = require('fastify')
const fastify = Fastify({ logger: false })

fastify.register((instance, opts, next) => {
  console.log('one')
  setTimeout(next, 1000)
}).after(() => {
  fastify.register((instance, opts, next) => {
    console.log('two')
    setTimeout(next, 1000)
  })
  fastify.register((instance, opts, next) => {
    console.log('three')
    next()
  })
})

fastify.register((instance, opts, next) => {
  console.log('four')
  next()
})

fastify.listen(3000)

将打印:

  

一个

     

两个

     

三个

     

四个