Is this hapi plugin compatible with the newest version Hapi ? I still get this error: **"register" must be a Function** here is my code : ``` const mongojs = require("hapi-mongojs"); module.exports = { name: "mongojs", register: mongojs, options: { url: "mongodb://localhost:27017/react_native_db", collections: [ { name: "users" } ] } }; ```
Is this hapi plugin compatible with the newest version Hapi ?
I still get this error: "register" must be a Function
here is my code :