Skip to content Skip to sidebar Skip to footer

Cannot Read Property 'sync' Of Undefined

I am following a tutorial on how to set up a basic mvc in Nodejs using the hapi server and a few other packages. Tutorial: https://www.sitepoint.com/node-js-mvc-application/ Git fo

Solution 1:

I have got it working by moving my index.js file to the models folder.

This file has the necessairy scripts that dispatches sequelise in the model thus fixing the problem.

Solution 2:

Make sure you have exported the db in index.js

module.exports = db

and declared a db variable at the beginning of the file

var db = {}

Post a Comment for "Cannot Read Property 'sync' Of Undefined"