Skip to content

Archi OnlineArchiMate modeling in your browser

A web clone of the Archi desktop tool — full ArchiMate 3.2, lossless .archimate round-trip, and jArchi-compatible scripting. No backend, no account, nothing leaves your browser.

Archi Online

See it in action

Archi Online runs entirely in your browser. Open the built-in Archisurance example, build your own model, or automate it with JavaScript.

The Archi Online workspace with the Archisurance model open

The IDE-style shell docks the model tree, palette, properties, and scripting panels around a custom SVG canvas. Everything is draggable, floatable, and persists across sessions.

Drawing a relationship with live validity feedback

Relationship tools show live validity feedback from Archi's own allowed-relationship matrix, and the magic connector offers only the connections ArchiMate permits between two elements.

Automate your model

Scripts use the same jArchi-compatible API as desktop Archi. A whole script run collapses into one undo step.

js
var actor = model.createElement("business-actor", "Customer");
var svc = model.createElement("business-service", "Claims Service");
var rel = model.createRelationship("serving-relationship", "", svc, actor);

var view = model.createArchimateView("Overview");
var vs = view.add(svc, 40, 120, 140, 60);
var va = view.add(actor, 40, 20, 140, 60);
view.add(rel, vs, va);
view.openInUI();

The scripting panel with the Monaco editor and console output

Where to go next

If you want to…Read
Run the app and build your first modelGetting Started
Learn the workspace, canvas, and settingsUser Guide
Model software architecture with C4C4 Modeling
Import, export, or present modelsImport & Export
Exchange models with desktop ArchiArchi Compatibility
Automate your model with JavaScriptScripting API
Build an extensionExtension API

Your data stays local

Models are explicit .archimate files you open and save yourself. Autosave, settings, the script library, extensions, and the window layout live in your browser's IndexedDB for the current profile only. The app never uploads your model anywhere.

Released under the MIT License. ArchiMate® is a registered trademark of The Open Group.