是否可以将 Forest admin 集成到解析服务器中?

Is it possible to integrate Forest admin into parse server?

非常希望能够将 forest 集成到解析服务器中。目前他们有一个与 express+mongoose 一起使用的 npm 插件,想知道是否可以将解析服务器配置为带有 mongoose 的 express 应用程序?

[更新] Forest Admin 依赖于自动生成的专用管理后端。所以它不再依赖于任何特定的框架。

Parser server is built on top of Express.js. Forest Admin 已经支持 Express with Mongoose、Sequelize 和 Loopback。

您不能直接使用forest-express-mongoose,因为Forest npm 插件(Liana)会尝试通过mongoose 分析数据库模式,这在Parse-server 中不存在。

Forest Admin supports Loopback today with the npm plugin (the Liana) forest-loopback。解析服务器支持类似于环回。

您可以创建具有相同架构的森林解析插件。两个模块只需要使用公共forest-express模块来生成AdminAPI。 forest-express-mongoose、forest-express-sequelize、forest-loopback 和 forest-parse 的唯一职责是通过使用的 ORM 分析数据库模式并将其映射到 "Forest valid schema"(在文档:http://doc.forestadmin.com/api-reference/#initializing-your-admin).