A library for working with JSON in F# Fable projects targeting Python
dotnet add package Fable.SimpleJson.Python
open Fable.SimpleJson.Python
type Fruit = { name: string }
let fruitJson = Json.serialize { name = "Orange" }
let parsedFruit = Json.parseNativeAs<Fruit> fruitJson
cd build
dotnet run -- clean
dotnet run -- test
dotnet run -- publish