Search code examples
node.jsnpmnodemon

Node.js (node:12276) [SEQUELIZE0004] DeprecationWarning


I am when I am trying to run nodemon app.js socioboard-api/user I am getting the following error

[nodemon] 1.19.3
[nodemon] to restart at any time, enter `rs`
[nodemon] watching dir(s): *.*
[nodemon] watching extensions: js,mjs,json
[nodemon] starting `node app.js`
(node:1220) [SEQUELIZE0004] DeprecationWarning: A boolean value was passed to options.operatorsAliases. This is a no-op with v5 and should be removed.

I Used PowerShell and CMD but still having the same issue


Solution

  • If that is related to socioboard-api/user installation..

    you should edit this config file and comment the values " "operatorsAliases": false," as per the error This is a no-op with v5 and should be removed

    as you can see from the error it is a warning only .. which is not going to halt your application, but you need to address it.