Skip to content

robwhitaker/Elm-Planner

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Elm-Planner

A recursive planner application written in Elm.

Just want to use it? Try it out now!

Features

  • Take notes in a tree-hierarchy, allowing each node to have sub-nodes down to any depth.
  • Each node can be titled and can store text content of its own (including nodes with children).
  • Autosave as you go! Every change you make is automatically saved to localstorage.
  • Save projects to or load project from your local machine. Working from multiple computers or browsers? Save the file, transfer it to your other machine, and upload it right back into Elm Planner!

Building Locally

This is assuming you have Elm v0.15+ installed already. If not, get it here.

  1. Clone this repository.
  2. In terminal:
$ cd PATH_TO_ELM_PLANNER

$ elm-package install -y

$ ./make && elm reactor
  1. Open localhost:8000/index.html in your browser.