diff --git a/index.md b/index.md index 1e7599fef7..77d311e621 100644 --- a/index.md +++ b/index.md @@ -12,4 +12,15 @@ Up to here, all previously mentioned layers are usable from either client or ser - [server](server): node layer. It basically supports server side command triggers like http (This permits to have commands being served by http). - [client](client): browser layer heavily inspired from angularjs and angular from a concept perspective, but with a radically different usage approach. -![Architecture Diagram](architecture.svg) +```mermaid +%%{ init: { 'flowchart': { 'curve': 'linear' } } }%% +flowchart TB + json-rpc-ws -.-> core + cli -.-> core + storage -.-> core + commands -.-> json-rpc-ws & cli + configuration -.-> commands + pm -.-> commands + server -.-> commands + client -.-> commands +```