Home › Sequelize
Sequelize to ER Diagram
Paste your Sequelize model definitions and get an interactive ER diagram — tables, columns from DataTypes, and relations from associations.
No signup · nothing uploaded · export PNG / SVG / Mermaid / DBML · shareable link
How it works
- Copy your Sequelize models (
sequelize.define(...)orModel.init(...)). - Paste them into the editor — Sequelize is auto-detected.
- Each model becomes a table; associations like
belongsTobecome relations. - Arrange, hide tables, then export PNG/SVG or share a link.
Example
Sequelize models like this:
const User = sequelize.define('User', {
email: { type: DataTypes.STRING, unique: true }
});
const Post = sequelize.define('Post', {
title: DataTypes.STRING
});
Post.belongsTo(User);
…renders User and Post with a relation between them. Try it with your own →
Why use it
- Private: everything runs in your browser — nothing is uploaded or stored on a server.
- Interactive: drag tables, auto-arrange, hide noise, add notes, and manually link columns.
- Export a high-res PNG, vector SVG, or the schema as Mermaid / DBML / PlantUML code.
- Free & open source — no account, no sign-up.
SequelizePrismaSQLAlchemySQL
FAQ
How do I diagram Sequelize models?
Paste your sequelize.define or Model.init definitions. Columns come from DataTypes and relations from associations like belongsTo / hasMany.
Is my schema uploaded anywhere?
No. Everything runs locally in your browser — your schema is never uploaded to or stored on any server.
Is it free?
Yes. It is completely free and open source, with no account or sign-up required.