Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

Attempt to create a opensource alternative to dbdiagram.io. Including DSL parser and Diagram Viewer

License

Notifications You must be signed in to change notification settings

codeby-global/db-schema-diagram

 
 

Repository files navigation

DBScheme Parser [beta]

dbdiagram.io is an awesome tool, in nerdify we use it a lot. But sometime we wish to have a light open source alternative.

Goals

  1. Create a parser with fully sintax fully compatible con dbdiagram.io [check milestone #1]
  2. Develop a light component to render ER diagrams

Sintax

You can try a demo here: here

enum status {
  open
  closed
}

Table categories {
  id integer [primary key]
  name varchar
}

Table products {
  id integer [primary key]
  category_id integer
  name varchar
}

Ref: products.category_id > categories.id

Will result

Screenshot-20200519002039-972x516

About

Attempt to create a opensource alternative to dbdiagram.io. Including DSL parser and Diagram Viewer

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 96.8%
  • JavaScript 3.0%
  • HTML 0.2%