rodrigogs / mysql-events

A node package that watches a MySQL database and runs callbacks on matched events.
BSD 3-Clause "New" or "Revised" License
136 stars 52 forks source link

Sequelize support #41

Open marcodali opened 2 years ago

marcodali commented 2 years ago
var Sequelize = require('sequelize');
var sequelize = new Sequelize(config.database, config.username, config.password, config);

Does it work with an ORM like sequelize? What would be the syntax?