Getting started with F#

 Date: April 12, 2016

F#

tl;dr This post is a list of resources for learning F# and an overview of my mini-project: Stock Estimator.

I couldn't resist anymore, and I finally tried F#. For the first two days, it was painful. Some elements of F# syntax are weird. However, after getting used to that, F# became a joy, and instead of a week (as I planned) I spent with F# almost two months.

Getting Started

Deep Dive

There is also a book written by Jon Skeet and Tomas Petricek: Real World Functional Programming: With Examples in F# and C#.

Testing

Web Development

The most popular F# Web Framework is Suave. There is great SuaveMusicStore tutorial (code), which is inspired by ASP.NET MVC Music Store tutorial. If you want to build Web API with F#, check Building REST Api in Fsharp Using Suave.

It is also worth to check End-to-end Functional Web Development by Tomas Petricek where he showcases building web app with Suave.

For more, check Web Programming with F# Guide.

Stock Estimator

I created F# based app for predicting future stock prices ($1,000,000 idea!). The back-end is written in F# and communicates with stock data API (Yahoo Finance) through the F# type provider. There is also Suave Web API (microservice), and ASP.NET Core web app that communicates with it. Front-end is powered by Aurelia Framework, and D3 library. In other words: I built an F# microservice, consumed it from a non-F# app, and have reusable logic in a separate project. All communication with microservice happens through the client (with Aurelia Framework). So, there is no usage of F# from C#, but...I also created a simple Console app (with C#) that uses mentioned F# logic. There is also Windows Forms app for displaying estimates, written in F#, that also uses reusable logic.

Entire source code is available on github. Check it out!

Summary

Programming in F# is pure joy! It's a great language for working with data. Moreover, F# fits perfectly into today's World of microservices. You don't have to rewrite your already existing app or create an entire app with F#. You can just create one microservice with F#, and see how it works for you!

 Tags:  programming

Previous
⏪ Azure Portal Tips & Tricks - 01. Themes

Next
Azure Portal Tips & Tricks - 02. Customizing Dashboard ⏩