Skip to content

a mind mapping library built by javascript

License

Notifications You must be signed in to change notification settings

hizzgdev/jsmind

Folders and files

NameName
Last commit message
Last commit date

Latest commit

990b53c · Feb 25, 2024
Sep 29, 2023
Dec 11, 2023
Jul 1, 2022
Feb 25, 2024
Nov 15, 2023
Feb 25, 2024
Jun 10, 2022
Sep 2, 2023
Oct 22, 2023
Jul 6, 2014
Feb 25, 2024
Dec 10, 2023
Feb 25, 2024
May 25, 2023
May 25, 2023
Dec 31, 2022
Feb 25, 2024
Feb 25, 2024
Feb 25, 2024

Repository files navigation

jsMind

npm version build-test

jsMind 是一个显示/编辑思维导图的纯 javascript 类库,其基于 html5 canvas 和 svg 进行设计。jsMind 以 BSD 协议开源,在此基础上你可以在你的项目上任意使用。

jsMind is mind map library built by javascript, it base on html5 canvas and svg. jsMind is released under the BSD license, you can embed it in any project as long as you abide by the license.

Project Home

Get Started

<html>
    <head>
        <link
            type="text/css"
            rel="stylesheet"
            href="//cdn.jsdelivr.net/npm/jsmind@0.8.2/style/jsmind.css"
        />
        <script
            type="text/javascript"
            src="//cdn.jsdelivr.net/npm/jsmind@0.8.2/es6/jsmind.js"
        ></script>
    </head>
    <body>
        <div id="jsmind_container"></div>

        <script type="text/javascript">
            var mind = {
                // 3 data formats were supported ...
                // see documents for more information
            };
            var options = {
                container: 'jsmind_container',
                theme: 'orange',
                editable: true,
            };
            var jm = new jsMind(options);
            jm.show(mind);
        </script>
    </body>
</html>

Links

Funding

Maintainer