The Simple Haskell Handbook
The Simple Haskell Handbook
Learn how to build Haskell applications.
About the Book
This is the book I wish I had when learning Haskell.
There are a lot of great books out there that teach you the language – but not how to actually build applications with it.
I read many Haskell books. They're great to learn about types, currying, type classes, Functors, Applicatives, Monads… but then what? I felt lost. Many times I just wanted to give up because I couldn't see how I should apply everything that I have learned in a practical way.
It's hard to tell what's considered best practice in the Haskell world. And that makes it difficult to get proficient with the language. That's why this book focuses on Simple Haskell, a subset of the language that I find strikes the right balance between features and ease of use.
In this book, we'll build a Continuous Integration Server. Why such a project? I wanted something serious enough that could pose some real challenges while developing it. No point implementing yet another blog or todo-list or similar toy applications – you're not going to learn much from those.
A CI Server is interesting for a number of reasons. The domain isn't trivial which means we'll have to put some thought into coming up with the right model. The application will have to work with external systems such as Docker containers and Github webhooks so there's plenty of lessons to learn from there.
Here's a brief list of features that Quad CI (our very own CI server!) will support:
- sandboxed builds in Docker containers
- multi-node architecture with agents picking up jobs to work on
- http api to interact with the frontend and other nodes
- support for triggering builds with github webhooks
We'll get to build all that, from scratch!
Who is this book for?
This book won't teach you Haskell. I assume you have some understanding of the language, can solve basic exercises and know what IO
actions are.
Instead, this book will teach you how to think about problems in a functional language. We won't get things right the first time, there's going to be a lot of refactoring. But that's why Haskell is so good right? Many people praise Haskell for its refactoring capabilities, but very few show precisely what refactoring Haskell code feels like. That's because you need a real project to experience that – you'll see many examples of it throughout the book.
This book is for people that want to move from theory to practice. There's plenty of material on learning the language but very little has been written on architecting applications and the thought process behind it.
Even if you don't plan on using Haskell in your day job, most of the lessons in this book will apply to other languages as well. Embracing Functional Programming will make you a better programmer, no matter the technology.
The full source code for the application is open-source and available on Github: https://github.com/alpacaaa/quad-ci
Table of Contents
- Introduction
-
Part I
- Exploring the Domain
- All about the State Machine
- Talking to Docker
- Building JSON values
- Parsing JSON
- Starting a Container
- Services and Dependency injection
- Setting up tests
- Running builds
- Getting tests to fail
- Waiting for containers to exit
- Intermission: Docker module refactoring
- Getting the Container status from the Docker api
- Running real commands
- Sharing data between steps
- Testing the shared workspace
- Collecting logs: another State Machine
- Testing Log collection
- Pulling images
- Parsing pipelines as yaml
-
Part II
- Building the imperative shell
- Server and Agents
- Building the Agent
- Testing Server and Agents
- Storing Builds in memory with STM
- Sending updates from Agents back to the Server
- Triggering builds through webhooks
- Implementing the webhook endpoint
- Building the api for the web UI
- Fetching logs for a step
- Listing all builds
- Storing Commit information
- Adding a CLI
- Putting it all together
- Appendix
The Leanpub 60 Day 100% Happiness Guarantee
Within 60 days of purchase you can get a 100% refund on any Leanpub purchase, in two clicks.
Now, this is technically risky for us, since you'll have the book or course files either way. But we're so confident in our products and services, and in our authors and readers, that we're happy to offer a full money back guarantee for everything we sell.
You can only find out how good something is by trying it, and because of our 100% money back guarantee there's literally no risk to do so!
So, there's no reason not to click the Add to Cart button, is there?
See full terms...
Earn $8 on a $10 Purchase, and $16 on a $20 Purchase
We pay 80% royalties on purchases of $7.99 or more, and 80% royalties minus a 50 cent flat fee on purchases between $0.99 and $7.98. You earn $8 on a $10 sale, and $16 on a $20 sale. So, if we sell 5000 non-refunded copies of your book for $20, you'll earn $80,000.
(Yes, some authors have already earned much more than that on Leanpub.)
In fact, authors have earnedover $14 millionwriting, publishing and selling on Leanpub.
Learn more about writing on Leanpub
Free Updates. DRM Free.
If you buy a Leanpub book, you get free updates for as long as the author updates the book! Many authors use Leanpub to publish their books in-progress, while they are writing them. All readers get free updates, regardless of when they bought the book or how much they paid (including free).
Most Leanpub books are available in PDF (for computers) and EPUB (for phones, tablets and Kindle). The formats that a book includes are shown at the top right corner of this page.
Finally, Leanpub books don't have any DRM copy-protection nonsense, so you can easily read them on any supported device.
Learn more about Leanpub's ebook formats and where to read them