🌐
npm
npmjs.com › package › sequelize
sequelize - npm
March 7, 2026 - It features solid transaction support, relations, eager and lazy loading, read replication and more.. Latest version: 6.37.8, last published: 3 months ago. Start using sequelize in your project by running `npm i sequelize`. There are 6991 other projects in the npm registry using sequelize.
      » npm install sequelize
    
Published   Mar 07, 2026
Version   6.37.8
🌐
Sequelize
sequelize.org
Sequelize
Sequelize is a modern TypeScript and Node.js ORM for Oracle, Postgres, MySQL, MariaDB, SQLite and SQL Server, and more. Featuring solid transaction support, relations, eager and lazy loading, read replication and more. Getting StartedAPI Reference · Upgrade to v6Support us · npm install sequelize ...
🌐
Medium
medium.com › @Ayra_Lux › a-guide-to-orm-sequelize-c276c7b6dd18
A Guide to ORM Sequelize
December 17, 2018 - But in the end, I did it! And this is why I decided to share this tutorial in order to help others set up Sequelize with clear understanding of the process. So, here we go! First things first, in an empty folder we initialize npm — duh!
🌐
npm
npmjs.com › package › @sequelize › core
@sequelize/core - npm
February 4, 2026 - Sequelize is a promise-based Node.js ... version: 7.0.0-alpha.48, last published: 5 months ago. Start using @sequelize/core in your project by running `npm i @sequelize/core`. There are 48 other projects in the npm registry using @sequelize/core....
      » npm install @sequelize/core
    
Published   Feb 04, 2026
Version   7.0.0-alpha.48
🌐
OneUptime
oneuptime.com › home › blog › how to use sequelize orm with node.js
How to Use Sequelize ORM with Node.js
January 22, 2026 - # Sequelize core npm install sequelize # Database driver (choose one) npm install pg pg-hstore # PostgreSQL npm install mysql2 # MySQL npm install mariadb # MariaDB npm install sqlite3 # SQLite npm install tedious # Microsoft SQL Server
🌐
GeeksforGeeks
geeksforgeeks.org › node.js › sequelize-npm
sequelize - npm - GeeksforGeeks
July 23, 2025 - # Install Sequelize npm install sequelize # Install a specific database dialect (e.g., for PostgreSQL) npm install pg pg-hstore # If using MySQL npm install mysql2 # If using SQLite npm install sqlite3
🌐
npm
npmjs.com › package › forest-express-sequelize
forest-express-sequelize - npm
February 3, 2026 - Official Express/Sequelize Liana for Forest. Latest version: 9.6.4, last published: 9 days ago. Start using forest-express-sequelize in your project by running `npm i forest-express-sequelize`. There are 3 other projects in the npm registry using forest-express-sequelize.
      » npm install forest-express-sequelize
    
Published   Jun 09, 2026
Version   9.6.4
Find elsewhere
🌐
Sequelize
sequelize-sequelize.mintlify.app
Sequelize — Node.js ORM - Sequelize
import { Sequelize, DataTypes, Model } from '@sequelize/core'; import { PostgresDialect } from '@sequelize/postgres'; const sequelize = new Sequelize({ dialect: PostgresDialect, database: 'mydb', user: 'myuser', password: 'mypassword', host: 'localhost', }); class User extends Model {} User.init( { firstName: DataTypes.STRING, lastName: DataTypes.STRING, }, { sequelize, modelName: 'User' }, ); await sequelize.sync(); const user = await User.create({ firstName: 'Jane', lastName: 'Doe' }); console.log(user.firstName); // 'Jane'
🌐
Weblearningblog
weblearningblog.com › nodejs › how-to-use-sequelize-with-node-and-express
How to use Sequelize with Node and Express - Web Learning Blog
June 6, 2021 - Let’s first install mysql2 by running npm install --save mysql2. Once the mysql client is installed, We can install Sequelize with npm install --save sequelize
🌐
NestJS
docs.nestjs.com › recipes › prisma
Documentation | NestJS - A progressive Node.js framework
Prisma is an open-source ORM for Node.js and TypeScript. It is used as an alternative to writing plain SQL, or using another database access tool such as SQL query builders (like knex.js) or ORMs (like TypeORM and Sequelize).
🌐
GitHub
github.com › urbansim › sequelize
GitHub - urbansim/sequelize · GitHub
November 1, 2021 - Sequelize is a promise-based Node.js ORM for Postgres, MySQL, SQLite and Microsoft SQL Server. It features solid transaction support, relations, read replication and more. Stable (v3) documentation · Master / unstable (v4-pre) documentation ...
Author   urbansim
🌐
Medium
medium.com › @aryanrot234 › mastering-sequelize-a-comprehensive-guide-for-node-js-developers-678ba87e3942
Mastering Sequelize: A Comprehensive Guide for Node.js Developers | by Aryan Shaw | Medium
August 25, 2024 - In this tutorial, we’ll dive into setting up Sequelize with a PostgreSQL database, creating models, and using various methods to interact with your data. Whether new to Sequelize or looking to improve your skills, this guide will walk you through everything you need to know. Before we start, ensure you have Node.js and npm installed.
🌐
Auth.js
authjs.dev › getting-started
Auth.js | Getting Started
June 11, 2026 - Sequelize · Supabase · SurrealDB · TypeORM · Unstorage · Upstash Redis · Xata · Integrations · Migrating to v5 · Getting StartedIntroduction ·
🌐
npm
npmjs.com › package › @sequelize › mysql
@sequelize/mysql - npm
MySQL Connector for Sequelize. Latest version: 7.0.0-alpha.48, last published: 2 months ago. Start using @sequelize/mysql in your project by running `npm i @sequelize/mysql`. There are 4 other projects in the npm registry using @sequelize/mysql.
      » npm install @sequelize/mysql
    
Published   Feb 04, 2026
Version   7.0.0-alpha.48
🌐
Medium
medium.com › @novaliastevany7 › creating-a-sequelize-configuration-for-node-js-applications-fa20744c7ecd
Creating a Sequelize Configuration for Node.js Applications | by Novaliastevany | Medium
March 3, 2024 - First, let’s ensure Sequelize is installed in our Node.js project along with the database driver for PostgreSQL or MySQL: npm install sequelize pg pg-hstore # for PostgreSQL npm install sequelize mysql2 # for MySQL
🌐
npm
npmjs.com › package › sequelize-auto
sequelize-auto - npm
Automatically generate bare sequelize models from your database.. Latest version: 0.8.8, last published: 4 years ago. Start using sequelize-auto in your project by running `npm i sequelize-auto`. There are 95 other projects in the npm registry using sequelize-auto.
      » npm install sequelize-auto
    
Published   Dec 09, 2021
Version   0.8.8
Author   Steve Schmitt
🌐
Sequelize
sequelize.org › introduction
Sequelize v6 | Sequelize
Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Oracle, Amazon Redshift and Snowflake’s Data Cloud. It features solid transaction support, relations, eager and lazy loading, read replication and more · Sequelize follows Semantic ...
🌐
DEV Community
dev.to › alexparra › my-first-npm-package-sequelize-airtight-1b0l
My first npm package: sequelize-airtight - DEV Community
October 31, 2020 - I took this opportunity to learn and use GitHub Actions workflows and also dependency aliases which allowed me to easily test against sequelize v5 and v6 continuously. Today, I'm just putting the word out and inviting you to have a look and possibly find something I've overlooked till now. All constructive feedback is highly appreciated. Very curious to know if this "clicks" with the community. Package: https://www.npmjs.com/package/sequelize-airtight Repository: https://github.com/alex-parra/sequelize-airtight