sequelize is an ORM framework to execute RDBMS queries from your NodeJS application to the database.
To install the sequelize dependency run the following command: npm i sequelize
To install the required RDBMS driver (here taking mysql as example) run the following command: npm i mysql2
Find example code for most creating a connection to database using this module.
<= Parent