All Projects → hizzgdev → Jsmind

hizzgdev / Jsmind

Licence: other
Javascript version of mind mapping

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
CSS
56736 projects

Projects that are alternatives of or similar to Jsmind

mind-map
Write and render mind-maps in Racket
Stars: ✭ 20 (-99.11%)
Mutual labels:  mind-mapping, mind-map
Node Tileserver
A lightweight tileserver based on NodeJS for serving bitmap and vector tiles.
Stars: ✭ 148 (-93.43%)
Mutual labels:  html5-canvas
Laravel Hackathon Starter
💻 A hackathon/MVP boilerplate for laravel web applications. Start your hackathons without hassle.
Stars: ✭ 1,589 (-29.5%)
Mutual labels:  web-application
Kaetram Open
An open-source 2D HTML5 adventure based off BrowserQuest (BQ).
Stars: ✭ 138 (-93.88%)
Mutual labels:  html5-canvas
Canvas Text Editor Tutorial
Simple text editor using html5 canvas
Stars: ✭ 130 (-94.23%)
Mutual labels:  html5-canvas
Spring
Spring integration for Vaadin
Stars: ✭ 141 (-93.74%)
Mutual labels:  web-application
Globodns
Api to manage Bind Name Server
Stars: ✭ 122 (-94.59%)
Mutual labels:  web-application
Cachet
📛 An open source status page system for everyone.
Stars: ✭ 12,478 (+453.59%)
Mutual labels:  web-application
Commafeed
Google Reader inspired self-hosted RSS reader.
Stars: ✭ 1,842 (-18.28%)
Mutual labels:  web-application
Kanji Koohii
A web application to help Japanese language learners remember the kanji.
Stars: ✭ 137 (-93.92%)
Mutual labels:  web-application
Whatwaf
Detect and bypass web application firewalls and protection systems
Stars: ✭ 1,881 (-16.55%)
Mutual labels:  web-application
Flutter Ui Designs
Just collection of UI designs build with flutter. Can run on any mobile, web & desktop.
Stars: ✭ 131 (-94.19%)
Mutual labels:  web-application
Web Methodology
Methodology for high-quality web application security testing - https://github.com/tprynn/web-methodology/wiki
Stars: ✭ 142 (-93.7%)
Mutual labels:  web-application
Percy
Build frontend browser apps with Rust + WebAssembly. Supports server side rendering.
Stars: ✭ 1,856 (-17.66%)
Mutual labels:  web-application
Docker Traefik
Script to setup Traefik reverse-proxy in Docker with Compose
Stars: ✭ 153 (-93.21%)
Mutual labels:  web-application
Tap Tap Adventure
Tap Tap Adventure is a massively online 2D MMORPG set in the medieval times with twists.
Stars: ✭ 123 (-94.54%)
Mutual labels:  html5-canvas
Vue Canvas Nest
💫 A Vue.js background component for canvas-nest.
Stars: ✭ 136 (-93.97%)
Mutual labels:  html5-canvas
Hledger
A reliable, user-friendly Plain Text Accounting tool with command line, terminal and web interfaces.
Stars: ✭ 1,887 (-16.28%)
Mutual labels:  web-application
Kotlin Full Stack Application Demo
Full-stack demo application written with Kotlin MPP
Stars: ✭ 165 (-92.68%)
Mutual labels:  web-application
C4
🔴🔵 Connect Four game in JS + Canvas
Stars: ✭ 156 (-93.08%)
Mutual labels:  html5-canvas

jsMind

jsMind 是一个显示/编辑思维导图的纯 javascript 类库,其基于 html5 的 canvas 进行设计。jsMind 以 BSD 协议开源,在此基础上你可以在你的项目上任意使用。你可以在此浏览适用于 jsMind 的 BSD 许可协议(中英文版本)

jsMind is a pure javascript library for mindmap, it base on html5 canvas. jsMind was released under BSD license, you can embed it in any project, if only you observe the license. You can read the BSD license agreement for jsMind in English and Chinese version here.

jsmind 现已发布到 npm https://www.npmjs.com/package/jsmind

Links:

Get Started:

<html>
    <head>
        <link type="text/css" rel="stylesheet" href="style/jsmind.css" />
        <script type="text/javascript" src="js/jsmind.js"></script>
        <!--
            enable drag-and-drop feature
            <script type="text/javascript" src="js/jsmind.draggable.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>
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].