So starting my adventure into all things Node. One of the tools I am trying to learn is Sequelize. So I will start off what I was trying to do:
I found this worked for me as of sequelize 3.14
var myModel = sequelize.define('model', { }, { classMethods: { someClassMethod: function() { return true; } }, { instanceMethods: { callClassMethod: function() { myModel.someClassMethod(); } } });