All Projects → marmelab → Architecturetree

marmelab / Architecturetree

Licence: mit
Draw and share your software architecture without diagramming software. Uses d3.js and Angular.js.

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to Architecturetree

leaflet heatmap
简单的可视化湖州通话数据 假设数据量很大,没法用浏览器直接绘制热力图,把绘制热力图这一步骤放到线下计算分析。使用Apache Spark并行计算数据之后,再使用Apache Spark绘制热力图,然后用leafletjs加载OpenStreetMap图层和热力图图层,以达到良好的交互效果。现在使用Apache Spark实现绘制,可能是Apache Spark不擅长这方面的计算或者是我没有设计好算法,并行计算的速度比不上单机计算。Apache Spark绘制热力图和计算代码在这 https://github.com/yuanzhaokang/ParallelizeHeatmap.git .
Stars: ✭ 13 (-93.84%)
Mutual labels:  d3, dataviz
Mozaik
Mozaïk is a tool based on nodejs / react / redux / nivo / d3 to easily craft beautiful dashboards
Stars: ✭ 3,546 (+1580.57%)
Mutual labels:  dataviz, d3
multi-verse
lit-element components for fast and modular multivariate analysis
Stars: ✭ 34 (-83.89%)
Mutual labels:  d3, dataviz
silky-charts
A silky smooth D3/React library
Stars: ✭ 38 (-81.99%)
Mutual labels:  d3, dataviz
Vue D3 Workshop
Workshop content material and excercises for Suncoast Developers
Stars: ✭ 63 (-70.14%)
Mutual labels:  dataviz, d3
aws-mlu-explain
Visual, Interactive Articles About Machine Learning: https://mlu-explain.github.io/
Stars: ✭ 46 (-78.2%)
Mutual labels:  d3, dataviz
Flask jsondash
🐍 📊 📈 Build complex dashboards without any front-end code. Use your own endpoints. JSON config only. Ready to go.
Stars: ✭ 3,215 (+1423.7%)
Mutual labels:  dataviz, d3
d3-gridding
grids for rapid D3 charts mockups
Stars: ✭ 100 (-52.61%)
Mutual labels:  d3, dataviz
D3 Parliament
A parliament chart based on D3js
Stars: ✭ 44 (-79.15%)
Mutual labels:  dataviz, d3
Treedu
Graphical Disk Usage command for the terminal, using Node.js, d3.js, blessed, and Drawille
Stars: ✭ 10 (-95.26%)
Mutual labels:  dataviz, d3
reusable-d3-charts
Reusable charts built with D3. Built on Web standards, fully customisable.
Stars: ✭ 33 (-84.36%)
Mutual labels:  d3, dataviz
Dex
Dex : The Data Explorer -- A data visualization tool written in Java/Groovy/JavaFX capable of powerful ETL and publishing web visualizations.
Stars: ✭ 1,238 (+486.73%)
Mutual labels:  dataviz, d3
covid-19
Current and historical coronavirus covid-19 confirmed, recovered, deaths and active case counts segmented by country and region. Includes csv, json and sqlite data along with an interactive website explorer.
Stars: ✭ 15 (-92.89%)
Mutual labels:  d3, dataviz
proteic
Streaming and static data visualization for the modern web.
Stars: ✭ 37 (-82.46%)
Mutual labels:  d3, dataviz
react-d3-integration
An example on how to integrate D3 into React
Stars: ✭ 14 (-93.36%)
Mutual labels:  d3, dataviz
Carbon Charts
📊 📈⠀Robust dataviz framework implemented using D3 & typescript
Stars: ✭ 287 (+36.02%)
Mutual labels:  dataviz, d3
multi-chart
lit-element building blocks for charts and visualization (based on d3.js v5)
Stars: ✭ 24 (-88.63%)
Mutual labels:  d3, dataviz
datalith
Simple, batteries included, components to build beautiful data visualizations
Stars: ✭ 29 (-86.26%)
Mutual labels:  d3, dataviz
Ngx Charts
📊 Declarative Charting Framework for Angular
Stars: ✭ 4,057 (+1822.75%)
Mutual labels:  dataviz, d3
Eventdrops
A time based / event series interactive visualization using d3.js
Stars: ✭ 1,164 (+451.66%)
Mutual labels:  dataviz, d3
archived Archived Repository
This code is no longer maintained. Feel free to fork it, but use it at your own risks.

Marmelab ArchitectureTree

ArchitectureTree is a single page application to visualize and edit architecture schemas in the browser, built with d3.js and AngularJS.

Sample Visualization

Check out the online demo.

Motivation

We generally use a client software to draw our system architecture schema, like Microsoft Visio © for example. But often, only one member of the team has this software installed on their laptop. Besides, the schema often uses a specific file format, and there is no standard way to draw the schema. It quickly becomes very hard to maintain the schema as the software evolves.

ArchitectureTree give you the possibility to visualize and edit an architecture schema in your browser, and to save it as a JSON file.

Installation

Get The Code

git clone [email protected]:marmelab/ArchitectureTree.git
cd ArchitectureTree

Create Architecture File

Create a JSON description of your system, and save it as data.json. A good starting point is the provided data.json-dist example file:

cp data.json-dist data.json

Start Static Webserver

ArchitectureTree is entirely client-side. However, as it uses AJAX to load the architecture file, you'll need a static web server to use it from localhost.

For example, by using the PHP one:

php -S localhost:4000

Or the Python one:

python -m SimpleHTTPServer 4000

Then, navigate to http://localhost:4000/.

Tip: If you commit the code to the gh-pages branch of a GitHub repository, it'll be available for viewing.

Usage

Filters on name, technos and hosts are avalaible on the left hand side of the screen.

Details about a node reveal on the right hand side of the screen when hovering a node.

You can edit the node by clicking on it: the details box turns into a form. After you save your modifications, the JSON in the bottom textarea is automaticaly updated. Note that you can also edit the JSON directly in the textarea.

Since there is no server-side, you have to manualy report the json modifications into the data.json file, and commit it.

Data description file

The data.json file describes your architecture in a json format. It allows versionning by using git or another SCM. It can be edited by anyone with access to the repository.

After any update to the description file, check that it works locally before committing (any JSON validation error will result in a blank screen). All charts rely on this data file.

Format

Each element of your system is defined by a JSON node entry. Here is an example:

{
    "name": "News",
    "children": [
        { "name": "World" },
        { "name": "Sport" }
    ],
    "url": "www.my-media-website.com/*",
    "dependsOn": ["Content API", "Xiti", "Search API", "OAS", "Account API", "    Picture API", "Router API"],    
    "technos": ["PHP", "Javascript", "Silex", "NGINX", "Varnish"],  
    "satisfaction": 0.9,
    "host": { "Amazon": ["fo-1", "fo-2"] }
}

Properties

  • name: name of the application / service / container
  • children: list of sub-applications.
  • url: where the application is available (if any)
  • dependsOn: list of application dependencies. The mapping is done on the node name (that means that two nodes cannot have the same name)
  • technos: list of technologies used by the application
  • satisfaction: Overall quality of the application; it's a number between 1 and 0
    • 1 for a good application
    • 0.8 for application which need some refactoring
    • 0.2 for a bad or not finished application
    • 0 for an horrible one or not yet started
  • host: list of hosts where the application is hosted, grouped by name, with the list of corresponding server names or ? if unknow (eg.: { "Amazon": ["front-1", "front-2"] }, "OVH": ["?"])

License

ArchitectureTree is licensed under the MIT Licence, courtesy of marmelab and Arte GEIE.

If you like ArchitectureTree and use it for an open-source project, please send us a screenshot of your ArchitectureTree at @marmelab!

And don't forget to check out our other visualizations:

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].