In Part 1 of this series, I had something basic up and running: an Elm front-end talking to a Haskell back-end. The next step is to get some persistence out of the back-end. We need Haskell to talk to a database. The tutorial I was following went with a simple Sqlite interface, but I wanted … Continue reading To The Helm – Part 2
Category: Elm
To The Helm – Part 1
Now that I've gotten my feet wet with both Haskell and Elm, I want to try and put them together. I'm just going to try something simple. Let's make a standard task list app. Note: You can find the code for this post here. I found a series of blog posts of somebody trying something … Continue reading To The Helm – Part 1
Climbing That Tree
You can find the code for this post here. Now that I've got Elm installed and working, it's time to really take it for a spin. I'm going to continue on with the same tutorial I was following in the last post. They want to use an RPG tracking system for an example. I decided … Continue reading Climbing That Tree
Planting an Elm
Now that I'm on a decent footing with my Haskell stack, it's time to get started with Elm. First things first, I needed to install Elm. I am running a Linux distro, and I happened to already have npm installed, so I just ran: and bam, I've got elm installed. If you're running Windows or … Continue reading Planting an Elm