
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
sequelize-cockroachdb
Advanced tools
This NPM package makes Sequelize compatible with CockroachDB.
Learn how to build a Node.js app with CockroachDB.
Please file bugs against the sequelize-cockroachdb project
This package needs Node.js v12 or later
First make sure you have CockroachDB installed. You can run cockroach version to see if is installed or you can download here
Run cockroach start-single-node --insecure --logtostderr to start the database. If this returns ERROR: cockroach server exited with error: unable to lookup hostname run with --host localhost flag.
Run cockroach sql --insecure to enter in SQL mode and type CREATE DATABASE sequelize_test;
Then install the depedencies with npm i and npm test to run all tests
From the docs
CockroachDB guarantees that while a transaction is pending, it is isolated from other concurrent transactions with serializable isolation.
Which means that any other query made in another connection to the same node will hang.
For example:
const t = await this.sequelize.transaction();
await this.User.create({ name: "bob" }, { transaction: t });
await this.User.findAll({ transaction: null }); // Query will hang!
See tests/model_create_test.js to browse those implementations.
FAQs
Support using Sequelize with CockroachDB.
The npm package sequelize-cockroachdb receives a total of 2,281 weekly downloads. As such, sequelize-cockroachdb popularity was classified as popular.
We found that sequelize-cockroachdb demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 14 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.