Skip to content

An open source, offline capable, mind mapping application leveraging HTML5 technologies

License

Notifications You must be signed in to change notification settings

bellofreedom/mindmaps

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

mindmaps

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

HTML5 goodness

  • Written entirely in JavaScript
  • 100% offline capable thanks to 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

  • 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 ./bin.

Host yourself

All you need is a web server for static files. Copy all files from /bin 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.

About

An open source, offline capable, mind mapping application leveraging HTML5 technologies

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 85.8%
  • CSS 5.2%
  • HTML 5.2%
  • Java 3.8%