Easily get raw data from Sequelize instances
Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Amazon Redshift and Snowflake’s Data Cloud. It features solid transaction support, relations, eager and lazy loading, read replication and more.
The Sequelize CLI
Resource pooling for Node.JS
Framework-agnostic migration tool for Node
Decorators and some other features for sequelize
Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Amazon Redshift, Snowflake’s Data Cloud, Db2, Oracle, and IBM i. It features solid transaction support, relations, eager and lazy loading, read repli
Automatically generate bare sequelize models from your database.
Sequelize is a promise-based Node.js ORM tool for Postgres, MySQL, MariaDB, SQLite, Microsoft SQL Server, Amazon Redshift, Snowflake’s Data Cloud, Db2, Oracle, and IBM i. It features solid transaction support, relations, eager and lazy loading, read repli
GraphQL & Relay for MySQL & Postgres via Sequelize
A simple mock interface specifically for testing code relying on Sequelize models
open telemetry instrumentation for the `sequelize` module
Session store for connect-session using sequelize
pgvector support for Node.js, Deno, and Bun (and TypeScript)
OpenTelemetry instrumentation for `sequelize` ORM
Nest - modern, fast, powerful node.js web framework (@sequelize)
Convert Sequelize models into various JSON Schema variants (using the Strategy Pattern)
A service adapter for Sequelize an SQL ORM
Advanced OData v4 parser for Sequelize.JS with support for $expand, lambda expressions, navigation properties, and complex filters
AutoMapper TypeScript Core
Official Express/Sequelize Liana for Forest
Batching and simplification of Sequelize with facebook/dataloader
sequelize fixture loader
Plugin that configures Sequelize to throw when accessing attributes omitted from a select.
@see summary
Simplifies use of serialized values with Sequel
Simplifies use of serialized values with Sequel
Now your `Sequel::Model` classes has method for getting `pg_enum` values from DataBase by field name.
Sequel::Units provides a simple way to work with numeric values with units in Sequel models.
Extension adds support to Sequel's DSL to make it easier to call MySQL JSON function and operators (added first on MySQL 5.7.8). Plugin detects MySQL json columns on models and adds column accessor that deserializes JSON values automatically (using Sequel's builtin Serialization plugin).
This gem takes your ruby input, plus an object such as a Sequel::Model object, and generates HTML code. If the object has values, they're inserted into the HTML, and if the object has error messages, code is generated to display them. You can use CSS, but it's not automated in this class of methods.
== Ruby Data Objects If you're building something in Ruby that needs access to a database, you may opt to use an ORM like ActiveRecord, DataMapper or Sequel. But if your needs don't fit well with an ORM—maybe you're even writing an ORM—then you'll need some other way of talking to your database. RDO provides a common interface to a number of RDBMS backends, using a clean Ruby syntax, while supporting all the functionality you'd expect from a robust database connection library: * Consistent API to connect to various DBMS's * Type casting to Ruby types * Time zone handling (via the DBMS, not via some crazy time logic in Ruby) * Native bind values parameterization of queries, where supported by the DBMS * Retrieve query info from executed commands (e.g. affected rows) * Access RETURNING values just like any read query * Native prepared statements where supported, emulated where not * Results given using simple core Ruby data types == RDBMS Support Support for each RDBMS is provided in separate gems, so as to minimize the installation requirements and to facilitate the maintenace of each driver. Many gems are maintained by separate users who work more closely with those RDBMS's. Due to the nature of this gem, most of the nitty-gritty code is actually written in C. See the official README for full details.