JS Tutorial Part 2 Create a many-to-many CRUD application from A to Z using ElectronJS, VueJS, SQLite and Sequelize ORM

introduce

Due to the density of the project and the length of the entire article, this tutorial will be divided into three parts.

The project is available in source code at the bottom of the article

Add Sequelize and SQLite3

Sequelize is a Promise-based Node.js ORM for Postgres, MySQL, MariaDB, SQLite, and Microsoft SQL Server. It has solid transaction support, relations, eager and lazy loading, read replication, and more.

Let's start!

To install Sequelize, run the following command:

npm install --save seq

Guess you like

Origin blog.csdn.net/iCloudEnd/article/details/131876675