Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://mermaidjs.github.io/mermaid-live-editor/
Location has moved to https://github.com/mermaid-js/mermaid-live-editor
https://mermaidjs.github.io/mermaid-live-editor/
mermaid
Last synced: about 2 months ago
JSON representation
Location has moved to https://github.com/mermaid-js/mermaid-live-editor
- Host: GitHub
- URL: https://mermaidjs.github.io/mermaid-live-editor/
- Owner: mermaidjs
- License: mit
- Created: 2017-08-16T12:14:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T05:08:33.000Z (about 1 year ago)
- Last Synced: 2024-04-13T18:54:16.711Z (9 months ago)
- Topics: mermaid
- Language: JavaScript
- Homepage: https://mermaidjs.github.io/mermaid-live-editor/
- Size: 25.5 MB
- Stars: 971
- Watchers: 25
- Forks: 181
- Open Issues: 56
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- make_work_easier - **mermaid-live-editor** - based tool for flowcharts and diagrams in markdown. Generate links or download images (SVG or PNG format). You can start from samples of Gantt chart, pie chart, flow chart, sequence diagram, class diagram and more. (Diagrams & Flowcharts / Coding Standards)
README
# Development has moved to https://github.com/mermaid-js/mermaid-live-editor
# mermaid-live-editor
Edit, preview and share mermaid charts/diagrams.
## Features
- edit and preview flowcharts, sequence diagrams, gantt diagrams in real time.
- save the result as a svg
- get a link to a viewer of the diagram so that you can share it with others.
- get a link to edit the diagram so that someone else can tweak it and send a new link back## Setup
Setup is simple.
```
yarn install
```Or run an HTTP server with Docker
```sh
docker build -t mermaidjs/mermaid-live-editor https://github.com/mermaidjs/mermaid-live-editor.git
docker run -d -p 8000:8000 mermaidjs/mermaid-live-editor
```And access it at [http://localhost:8000](http://localhost:8000)
## Development
```
yarn dev
open http://localhost:1234
```This app is created with React + React Router v4.
## Release
```
yarn release
```