All Projects → drichard → Mindmaps

drichard / Mindmaps

Licence: agpl-3.0
An open source, offline capable, mind mapping application leveraging HTML5 technologies

Programming Languages

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

Projects that are alternatives of or similar to Mindmaps

Django blog
A blog application made with Django and bootstrap
Stars: ✭ 172 (-92.65%)
Mutual labels:  html5
Oshmi
SCADA HMI for substations and automation applications.
Stars: ✭ 180 (-92.3%)
Mutual labels:  html5
Youtube Dl Gui
A cross-platform GUI for youtube-dl made in Electron and node.js
Stars: ✭ 183 (-92.18%)
Mutual labels:  html5
Black
World's fastest HTML5 2D game engine   🛸
Stars: ✭ 174 (-92.56%)
Mutual labels:  html5
Classic Pool Game
Classic 8 Ball pool game written in JavaScript
Stars: ✭ 177 (-92.43%)
Mutual labels:  html5
Jquery Contextmenu
jQuery contextMenu plugin & polyfill
Stars: ✭ 2,148 (-8.17%)
Mutual labels:  html5
Listloading
listloading是一个移动端的上拉、下拉加载更多的组件。主要依赖于iscroll.js v5.1.2基础上开发的组件,基础库可以使用jquery.js或者zepto.js操作dom节点,目前我是使用了zepto.js作为基础库操作dom,以jquery插件的形式存在。如果不想以插件方式使用,则只需要把listloading直接移植你需要的库里面就ok啦。listloading主要针对移动端而生,在使用浏览器自带滚动,用户体验很不友好,与Android和ios差别甚远,所以选择iscroll.js,它实现方式是使用css3动画translate 3D 转换来实现滚动效果,transform属性使用硬件加速,性能方法得到很大提高。 https://gtdalp.github.io/widget/listloading/demos/listloading.html
Stars: ✭ 169 (-92.77%)
Mutual labels:  html5
Ribbon.js
🎀 Only 1kb javascript gist to generate a ribbon in your website with HTML5 canvas.
Stars: ✭ 189 (-91.92%)
Mutual labels:  html5
Buttercake
Material Design Components, Responsive and Modern CSS Framework Built with Flexbox 🍰
Stars: ✭ 178 (-92.39%)
Mutual labels:  html5
Spellbook Of Modern Webdev
A Big Picture, Thesaurus, and Taxonomy of Modern JavaScript Web Development
Stars: ✭ 13,450 (+475.03%)
Mutual labels:  html5
Zero To Mastery Website
A website to track the status of the OpenSource Projects that our groups will be working on, with links to the github profiles of the contributors.
Stars: ✭ 175 (-92.52%)
Mutual labels:  html5
Stage.js
2D HTML5 rendering and layout engine for game development
Stars: ✭ 2,138 (-8.59%)
Mutual labels:  html5
Imscp
i-MSCP Main Repository
Stars: ✭ 184 (-92.13%)
Mutual labels:  html5
Playcanvas Ar
Fast and Easy Augmented Reality for the Web 🚀
Stars: ✭ 172 (-92.65%)
Mutual labels:  html5
Focus Budget Manager
Budget Manager application built with Vue.js, Node.js, Express.js and MongoDB
Stars: ✭ 189 (-91.92%)
Mutual labels:  html5
Laradminator
Integration of Adminator into Laravel 6.x/7.x/8.x with RTL support
Stars: ✭ 170 (-92.73%)
Mutual labels:  html5
Haxegon
A haxe programming library for beginners. Powered by OpenFL and Starling.
Stars: ✭ 182 (-92.22%)
Mutual labels:  html5
Kiddopaint
Kiddo Paint
Stars: ✭ 189 (-91.92%)
Mutual labels:  html5
Yarte
Yarte stands for Yet Another Rust Template Engine
Stars: ✭ 189 (-91.92%)
Mutual labels:  html5
Mindmap Full Stack
This is A roadmap or you can spell it mindmap for Developer's , this is for frontend and Full stack developer , all the people who belive in them and want to grow faster can work with this mindmap.
Stars: ✭ 185 (-92.09%)
Mutual labels:  mindmap

PSA: This project is not actively maintained. I consider it feature complete for what it set out to do. I'll fix critical bugs should they pop up but I won't be adding new features.

mindmaps

mindmaps is a HTML5 based mind mapping application. It lets you create neat looking mind maps in the browser.

This project started in 2011 as an exploration into what's possible to do in browsers using modern APIs. Nowadays, most of this stuff is pretty common and the code base is a bit outdated. This was way before React, ES6, webpack. Heck, it doesn't even use Backbone.

However, there is no reason to change any of that and it makes the code base quite easy to grok. There is no compilation step, no babel plugins, no frameworks. Just a JavaScript application and a very simple Model-View-Presenter pattern.

HTML5 stuff which was cool in 2011

  • 100% offline capable via ApplicationCache
  • Stores mind maps in LocalStorage
  • FileReader API reads stored mind maps from the hard drive
  • Canvas API draws the mind map

Try it out

The latest stable build is hosted here.

Build

  • First run npm install to install required dependencies
  • Run npm run start to launch a local dev server. The app will be hosted at http://localhost:3000.
  • Run npm run build to compile the production bundle. The artifacts will be located in /dist.

Host yourself

All you need is a web server for static files. After building, copy all files from /dist into your web directory and launch the app with index.html. Make sure your web server serves .appcache files with the mime type text/cache-manifest for the application to be accessible offline.

In Apache add the following line to your .htaccess:

AddType text/cache-manifest .appcache

In nginx add this to conf/mime.types:

text/cache-manifest appcache; 

Alternatively, you can launch a local debug server with npm start which starts a server on localhost:8080.

License

mindmaps is licensed under AGPL V3, see LICENSE for more information.

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].