Feliz 3.1.1

dotnet add package Feliz --version 3.1.1
                    
NuGet\Install-Package Feliz -Version 3.1.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Feliz" Version="3.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Feliz" Version="3.1.1" />
                    
Directory.Packages.props
<PackageReference Include="Feliz" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Feliz --version 3.1.1
                    
#r "nuget: Feliz, 3.1.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Feliz@3.1.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Feliz&version=3.1.1
                    
Install as a Cake Addin
#tool nuget:?package=Feliz&version=3.1.1
                    
Install as a Cake Tool

Feliz Nuget

A fresh retake of the React API in Fable, optimized for happiness.

Here is how it looks like:

module App

open Feliz

[<ReactComponent>]
let Counter() =
    let (count, setCount) = React.useState(0)
    Html.div [
        Html.button [
            prop.style [ style.marginRight 5 ]
            prop.onClick (fun _ -> setCount(count + 1))
            prop.text "Increment"
        ]

        Html.button [
            prop.style [ style.marginLeft 5 ]
            prop.onClick (fun _ -> setCount(count - 1))
            prop.text "Decrement"
        ]

        Html.h1 count
    ]

open Browser.Dom

let root = ReactDOM.createRoot (document.getElementById "root")
root.render (Counter())

✨ Features

  • Flexible API design: Combine the reliability of F# type safety with the flexibility to interop easily with native JavaScript.
  • Discoverable attributes with no more functions, Html attributes or CSS properties globally available so they are easy to find.
  • Proper documentation: each attribute and CSS property
  • Full React API support: Feliz aims to support the React API for building components using hooks, context and more.
  • Fully Type-safe: no more Margin of obj but instead utilizing a plethora of overloaded functions to account for the overloaded nature of CSS attributes, covering 90%+ of the CSS styles, values and properties.
  • Compatible with Femto.
  • Approximately Zero bundle size increase where everything function body is erased from the generated JavaScript unless you actually use said function.

🚀 Quick Start

# install the template (if you haven't already)
dotnet new -i Feliz.Template
# create a new Feliz project from the installed template
dotnet new feliz -n MyProject
# navigate to the created project folder
cd MyProject
# install the npm dependencies
npm install
# install .NET tools
dotnet tool restore
# start the development server
npm start

📚 Documentation

Explore the full docs at https://fable-hub.github.io/Feliz/ — packed with live examples and practical guidance. Highlights:

If anything’s unclear or you’re missing an example, please open an issue or discussion — contributions are very welcome!

⌚ Changelog

Each project in Feliz has its own changelog file in the src folder. Check them out for the latest changes!

Here is a direct link to the Feliz changelog.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (131)

Showing the top 5 NuGet packages that depend on Feliz:

Package Downloads
Feliz.Router

A router component for React and Elmish that is focused, powerful and extremely easy to use.

Feliz.UseElmish

useElmish hooks to build Elmish components as React components

Feliz.Bulma

Package Description

Feliz.UseListener

React hooks for easy event listener management.

Feliz.UseDeferred

Hooks for dead-simple data fetching with Feliz

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.1.1 644 12/22/2025
3.1.0 605 12/15/2025
3.0.0 1,216 12/10/2025
3.0.0-rc.16 313 12/8/2025
3.0.0-rc.15 466 12/1/2025
3.0.0-rc.14 182 11/28/2025
3.0.0-rc.13 143 11/27/2025
3.0.0-rc.12 311 11/21/2025
3.0.0-rc.11 290 11/21/2025
3.0.0-rc.10 382 11/18/2025
3.0.0-rc.9 384 11/18/2025
3.0.0-rc.8 201 11/14/2025
3.0.0-rc.5 118 11/7/2025
3.0.0-rc.4 162 11/3/2025
3.0.0-rc.3 240 10/25/2025
3.0.0-rc.2 160 10/7/2025
3.0.0-rc.1 189 10/2/2025
2.9.0 69,154 10/26/2024
2.8.0 36,910 6/22/2024
2.8.0-beta.0 3,248 12/25/2023
2.7.0 44,046 10/8/2023
2.6.0 69,781 3/21/2023
2.5.0 678 3/18/2023
2.4.1 4,588 2/23/2023
2.4.0 16,595 1/14/2023
2.3.0 26,303 12/27/2022
2.2.0 518 12/27/2022
2.1.0 508 12/27/2022
2.0.1 629 12/25/2022
2.0.0 10,585 12/25/2022
2.0.0-prerelease-003 7,214 9/16/2022
2.0.0-prerelease-002 8,544 9/1/2022
2.0.0-prerelease-001 361 8/26/2022
1.68.0 53,453 8/17/2022
1.67.0 9,369 8/5/2022
1.66.0 2,135 8/3/2022
1.65.0 30,146 7/9/2022
1.64.0 18,372 5/9/2022
1.63.0 929 5/9/2022
1.62.0 27,976 4/19/2022
1.61.0 27,364 3/12/2022
1.60.0 1,465 3/5/2022
1.59.0 13,293 2/24/2022
1.58.1 7,316 2/10/2022
1.58.0 1,401 2/3/2022
1.57.0 27,509 11/29/2021
1.56.0 4,099 11/8/2021
1.55.0 12,405 11/5/2021
1.54.0 3,878 10/24/2021
1.53.0 3,884 10/2/2021
1.52.0 10,742 9/10/2021
1.51.0 9,054 8/17/2021
1.50.0 3,054 8/8/2021
1.49.0 20,262 7/7/2021
1.48.0 665 7/7/2021
1.47.0 22,310 6/13/2021
1.46.0 2,350 6/8/2021
1.45.0 10,822 5/13/2021
1.44.0 1,971 5/3/2021
1.43.0 6,595 4/16/2021
1.42.0 1,719 4/10/2021
1.41.0 1,051 4/8/2021
1.40.1 5,256 3/30/2021
1.40.0 2,643 3/24/2021
1.39.0 693 3/24/2021
1.38.0 1,565 3/17/2021
1.37.0 5,094 3/8/2021
1.36.0 747 3/6/2021
1.35.0 1,430 2/28/2021
1.34.0 1,937 2/21/2021
1.33.1 16,990 2/21/2021
1.33.0 3,642 2/4/2021
1.32.0 18,638 12/27/2020
1.31.1 1,535 12/22/2020
1.31.0 1,061 12/22/2020
1.30.0 808 12/22/2020
1.29.0 2,299 12/15/2020
1.28.0 24,192 12/15/2020
1.27.0 856 12/13/2020
1.25.0 922 12/12/2020
1.24.0 1,334 12/10/2020
1.23.0 714 12/10/2020
1.22.1 748 12/10/2020
1.22.0 6,349 12/2/2020
1.21.0 915 12/2/2020
1.20.0 1,256 11/27/2020
1.19.0 709 11/26/2020
1.18.0 1,326 11/26/2020
1.17.0 12,878 11/15/2020
1.16.2 3,431 11/1/2020
1.16.1 835 10/30/2020
1.16.0 6,239 10/23/2020
1.15.0 1,196 10/23/2020
1.14.1 5,012 10/19/2020
1.14.0 4,876 9/19/2020
1.13.2 1,868 9/16/2020
1.13.1 14,031 9/1/2020
1.13.0 4,890 8/16/2020
1.12.1 1,504 8/10/2020
1.12.0 1,345 8/9/2020
1.11.0 2,596 8/8/2020
1.10.1 1,526 7/30/2020
1.10.0 804 7/29/2020
1.9.0 779 7/29/2020
1.8.0 837 7/29/2020
1.7.0 2,806 7/16/2020
1.6.0 9,772 7/3/2020
1.5.0 14,216 6/24/2020
1.4.0 845 6/24/2020
1.3.0 18,693 6/7/2020
1.2.0 4,498 6/4/2020
1.1.1 11,258 5/24/2020
1.1.0 5,515 5/21/2020
1.0.0 3,745 5/16/2020
0.86.0 4,754 5/9/2020
0.85.0 2,260 5/7/2020
0.84.0 946 5/4/2020
0.83.0 3,535 5/4/2020
0.82.0 869 5/3/2020
0.81.0 1,339 4/30/2020
0.80.0 883 4/28/2020
0.79.0 789 4/28/2020
0.78.0 1,773 4/27/2020
0.77.0 773 4/26/2020
0.76.0 1,714 4/26/2020
0.75.0 3,758 4/22/2020
0.74.2 5,972 4/20/2020
0.74.1 4,686 4/12/2020
0.74.0 6,736 3/29/2020
0.73.0 1,940 3/26/2020
0.72.0 6,244 3/22/2020
0.71.0 1,835 3/20/2020
0.70.0 2,726 3/17/2020
0.69.0 2,063 3/12/2020
0.68.10 6,764 12/10/2019
0.68.9 4,330 12/5/2019
0.68.8 1,781 12/5/2019
0.68.7 2,711 12/4/2019
0.68.6 1,758 12/1/2019
0.68.5 1,759 11/29/2019
0.68.3 4,339 11/27/2019
0.68.2 8,181 11/18/2019
0.68.1 1,711 11/18/2019
0.68.0 4,557 11/14/2019
0.67.2 2,624 11/13/2019
0.67.1 1,830 11/4/2019
0.67.0 2,085 11/4/2019
0.66.5 1,710 11/3/2019
0.66.4 1,473 11/3/2019
0.66.3 1,654 11/1/2019
0.66.2 1,546 11/1/2019
0.66.1 2,709 10/31/2019
0.66.0 1,843 10/30/2019
0.65.5 1,589 10/29/2019
0.65.4 1,627 10/28/2019
0.65.3 1,566 10/28/2019
0.65.2 1,369 10/27/2019
0.65.1 1,321 10/27/2019
0.65.0 1,696 10/27/2019
0.64.0 1,366 10/27/2019
0.63.0 1,798 10/22/2019
0.62.0 1,182 10/21/2019
0.61.0 1,146 10/21/2019
0.60.0 852 10/20/2019
0.59.0 1,379 10/20/2019
0.58.0 2,685 10/14/2019
0.57.2 1,411 10/12/2019
0.57.1 1,200 10/10/2019
0.57.0 1,883 10/8/2019
0.56.0 1,609 10/6/2019
0.55.0 851 10/6/2019
0.54.0 1,053 10/6/2019
0.53.0 1,351 10/5/2019
0.52.0 1,119 9/14/2019
0.51.0 841 9/14/2019
0.50.0 843 9/10/2019
0.49.0 889 9/9/2019
0.48.0 858 9/9/2019
0.47.0 1,240 8/31/2019
0.46.0 1,338 8/28/2019
0.45.0 846 8/28/2019
0.44.0 843 8/27/2019
0.42.0 894 8/26/2019
0.41.0 892 8/19/2019
0.40.0 1,484 8/13/2019
0.39.0 878 8/13/2019
0.38.0 907 8/5/2019
0.37.0 894 8/5/2019
0.36.0 926 7/31/2019
0.35.0 945 7/29/2019
0.34.0 900 7/28/2019
0.33.0 872 7/28/2019
0.32.0 899 7/28/2019
0.31.0 877 7/28/2019
0.30.0 890 7/27/2019
0.29.0 842 7/26/2019
0.28.0 857 7/26/2019
0.27.0 870 7/26/2019
0.26.0 847 7/26/2019
0.25.0 884 7/26/2019
0.24.0 838 7/25/2019
0.23.0 900 7/25/2019
0.22.0 865 7/25/2019
0.20.0 844 7/25/2019
0.19.0 866 7/25/2019
0.18.0 871 7/24/2019
0.17.0 867 7/24/2019
0.16.0 896 7/23/2019
0.15.0 848 7/22/2019
0.14.0 873 7/22/2019
0.13.0 863 7/22/2019
0.12.0 889 7/22/2019
0.11.0 809 7/22/2019
0.10.1 845 7/22/2019
0.10.0 893 7/22/2019
0.9.0 856 7/22/2019
0.8.0 859 7/22/2019
0.7.0 872 7/22/2019
0.6.0 899 7/22/2019
0.5.0 853 7/21/2019
0.4.0 831 7/21/2019
0.3.0 830 7/21/2019
0.2.0 861 7/21/2019
0.1.0 1,153 7/21/2019

### ✨ Added

- Support for the [autocorrect attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Global_attributes/autocorrect) (by @kerams)
- Support for `svg.key` property #698 (by @Freymaurer)