Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mizy/re-my-mind
a high-performance js library for generating and rendering mind maps
https://github.com/mizy/re-my-mind
canvas mindmap svg
Last synced: about 1 month ago
JSON representation
a high-performance js library for generating and rendering mind maps
- Host: GitHub
- URL: https://github.com/mizy/re-my-mind
- Owner: mizy
- License: mit
- Created: 2019-09-29T02:08:54.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-04-17T07:28:43.000Z (almost 2 years ago)
- Last Synced: 2024-10-25T05:55:32.928Z (3 months ago)
- Topics: canvas, mindmap, svg
- Language: HTML
- Homepage:
- Size: 32.3 MB
- Stars: 5
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [remind-editor](https://mizy.github.io/re-my-mind/)
Remind is a visual framework that supports rendering and editing tree-structured data in various layout types.
* Supports Canvas and SVG dual-engine rendering to improve rendering performance.
* Supports Docker deployment and NAS deployment.
* Does not rely on browser layout capabilities to enhance performance, large files open in seconds.
* Highly extensible, supports custom nodes and themes.
* Supports extensible animations.[查看中文版本](readme-zh.md)
# Demo
[Complete DEMO](https://mizy.github.io/re-my-mind/dist/demo.html)
[base](https://mizy.github.io/re-my-mind/public/base.html)
![snapshot](https://mizy.github.io/re-my-mind/snapshot.png)
![snapshot](https://mizy.github.io/re-my-mind/snapshot1.png)
```
npm run start
```# Docker Start
```
docker run -d -v your_data_path:/reminds -p 7001:7001 mizydocker/remind
```# Install
```sh
npm i remind-editor --save
```# Usage
```html
```
```sh
npm i remind-editor --save
import Remind from 'remind-editor'
```# Start
```
import Remind from 'remind-editor';new Remind(document.getElementById("root"),{
data:{} // data
})
```# Export Data
```
remind.page.toJSON()
```[查看中文版本](readme-zh.md)