Powerful mind mapping library SimpleMindMap

Insert image description here

Frank YangThe software in this article is recommended by netizens ;

What is SimpleMindMap?

Simple Mind MapIt is a simple and powerful Webmind mapping library that does not rely on any specific framework and can help you quickly develop mind mapping products. It is also Simple Mind Mapa mind mapping software. Whether you are a developer or a user, as long as you like mind mapping, you can find what you need in this project.

Software features

  • Plug-in architecture, in addition to core functions, other functions are provided as plug-ins, used on demand, reducing packaging size
  • Supports logical structure charts, mind maps, organization charts, directory organization charts, timelines (horizontal, vertical), fishbone diagrams and other structures
  • Built-in multiple themes, allowing highly customized styles and supporting registration of new themes
  • Node content supports text (normal text, rich text), pictures, icons, hyperlinks, notes, labels, and summaries
  • Nodes support dragging (drag and move, free adjustment), multiple node shapes, and DDMfull customization of node content.
  • Support canvas dragging and zooming
  • Ctrl+Supports two multi-select node methods: mouse button drag selection and left button selection.
  • Supports exporting to json, png, svg, pdf, markdown, and importing xmindfrom json, xmind,markdown
  • Supports shortcut keys, forward and backward, association lines, search and replace, mini map, watermark
  • Provides rich configurations to meet various usage habits in various scenarios

Simple Mind MapIn addition to webthe online version, it also supports clients of Windows, Mac, and platforms. LinuxOfficially provides Baidu disk download and githubdownload

Insert image description here

If you don’t want to install it, you can experience it online: https://wanglin2.github.io/mind-map

Install

Install using Docker on Synology.

Search in the registry shuiche, select the first one shuiche/mind-map, version selection latest.

At the time of writing this article, latestthe corresponding version is v0.5.0;

Insert image description here

port

As long as the local port does not conflict, if you are not sure, you can check it with the command

# 查看端口占用
netstat -tunlp | grep 端口号
local port container port
3055 8080

Insert image description here

Command line installation

If you are familiar with the command line, it may be docker clifaster to use

# 运行容器
docker run -d \
   --restart unless-stopped \
   --name simplemindmap \
   -p 3055:8080 \
   shuiche/mind-map

You can also use to docker-composeinstall and save the following content as docker-compose.ymla file

version: '3'

services:
  smm:
    image: shuiche/mind-map
    container_name: simplemindmap
    restart: unless-stopped
    ports:
      - 3055:8080

Then execute the following command

# 新建文件夹 simplemindmap 
mkdir -p /volume1/docker/simplemindmap

# 进入 simplemindmap 目录
cd /volume1/docker/simplemindmap

# 将 docker-compose.yml 放入当前目录

# 一键启动
docker-compose up -d

run

Enter in the browser http://群晖IP:3055to see the main interface

Insert image description here

But now when you click on it 新建, 打开it will prompt:你的浏览器可能不支持,建议使用最新版本的Chrome浏览器

Insert image description here

In the browser 开发者工具, you will see the following error

Insert image description here

In fact, this problem Logseq has been encountered in double-chain notes, showOpenFilePicker()and showSaveFilePicker()needs to httpsbe used in the environment, so we need to perform anti-generation processing

Article Portal: Installation Guide for Double-Chain Note Logseq

Insert image description here

reverse proxy

Lao Su Tailscale + npmdid the test on the plan. Students who don’t know yet can go and take a look.

Article Portal: Use a custom domain name to access Tailscale nodes

Insert image description here

SSLIf there are no problems, check them all.

Insert image description here

Re-open the anti-generation domain name in the browser and you can use it normally.

Format

Import support .smm, .json, .xmind, .xlsx, .mdfiles

Insert image description here

Export also supports pictures, SVGand PDFetc.

Insert image description here

If you are a developer, the official provides more detailed development documents: https://wanglin2.github.io/mind-map/#/doc/zh/introduction/

Reference documentation

wanglin2/mind-map: A fairly powerful Web mind map. A relatively powerful web mind map.
Address: https://github.com/wanglin2/mind-map

Thoughts mind map
address: https://wanglin2.github.io/mind-map/#/index

Guess you like

Origin blog.csdn.net/wbsu2004/article/details/132637851