Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
docs(docs): add mermaid architecture diagram
Browse files Browse the repository at this point in the history
  • Loading branch information
faselbaum committed Sep 11, 2018
1 parent 86fc361 commit 1b72e70
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions architecture-diagram.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
```mermaid
graph BT
subgraph ElectronNode
fs(FileSystem)
express(Express)
persistence(Persistence)
analyzer(Analyzer)
mainContext(MainContext)
webpack(Webpack)
fs-->persistence
fs-->analyzer
persistence-->mainContext
subgraph Analyzer
webpack---analyzer
end
analyzer-->mainContext
end
express-- Initial Html -->clientContext
express-- Initial Html -->previewContext
sms(Sender MobxSync Serde)
mainContext-->sms
sms-->clientContext
sms-->previewContext
previewContext-->sms
clientContext-->sms
sms-->mainContext
subgraph BrowserWindow
clientContext(ClientContext)
subgraph PreviewIFrame
previewContext(PreviewContext)
end
end
```

0 comments on commit 1b72e70

Please sign in to comment.