/FableSuaveSharedCode

A simple proof of concept of sharing F# code between a Suave backend and a Fable generated frontend

Primary LanguageCSSOtherNOASSERTION

F# Suave / Fable shared code example

This is a simple proof of concept of using F# on both the backend and the frontend and of sharing some code between them. Be sure to check out the blogpost that describes the motivation in more detail.

On the frontend side it demonstrates cross-compiling F# to Javascript using Fable and using this Javascript in an electron app. The app is an extremely primitive shopping app that let's the user change the quantity of a single product. It updates the price on every button click and also checks if any of a list of discounts applies. The only discount that is actually implemented is a discount that lowers the price by 90% if the user wants to buy exactly 12 items. The app uses Fable-Arch which reimplements the great Elm Architecture in F#. The app is styled with CSS from http://html5up.net by AJ. It uses the Font Awesome icon font to display a lighting bolt icon on the buy button.

The backend is a Suave http server application that listens to POST requests on the /test endpoint. It tries to deserialize the body as JSON to a super primitive shopping Cart type (just a record with a Quantity field), calculates the price with any applicable discounts and the returns just the price as a double if everything worked.

The core "business logic", i.e. the data types for Cart, Discount etc and the logic to test if a discount applies are implemented in a separate file that is included by both the frontend and the backend. By sharing one source of truth between them instead of writing the same logic in two different languages for the two worlds, a big source of errors is prevented.

Check the frontend and backend directory for more information how to run the two parts and what they were based on.

Many thanks to the many contributors/authors of all the pieces that made this possible and the examples on top of which this demonstration was built!