Essa is a model-first diagramming tool for sketching application behavior across pages, APIs, and PostgreSQL storage.
Essa diagrams are built from a few high-signal blocks:
- App Views represent pages or screens. Every view has an on load lifecycle, plus user-named events such as
SubmitButton::onClickthat map to API methods or other views. - API Resources define methods, inputs, and response schemas.
- PSQL Tables define PostgreSQL tables, columns, enums, indexes, and foreign keys.
- Annotations let you add freeform notes directly to the canvas.
Connections describe intent rather than only drawing lines:
- App View events and lifecycles can connect to REST methods for
read,write, orread/writedata flow. - App View events can connect to other App Views with
navigateedges. - REST methods can connect to PSQL tables to describe table reads and writes.
- Navigation edges include a data field for describing what is passed to the destination view.
- PSQL field-level foreign key edges are generated indicators, not user-created connection handles.
Handles stay out of the way until you hover a block or start a connection. While dragging, viable targets are highlighted.
Use the diagram export menu to save:
.essafiles for preserving and sharing the editable diagram..mdfiles containing a Mermaid relationship flowchart, Mermaid ER diagram, OpenAPI JSON, and PostgreSQL DDL.
npm install
npm run devUseful checks:
npm run build
npm run lint
npm run test