File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change 1+ # SAFE.Utils
2+
3+ SAFE.Utils provides essential utilities for building [ SAFE] ( https://safe-stack.github.io/ ) applications. It's distributed as two NuGet packages:
4+
5+ - SAFE.Client.Utils - Utilities for client-side code
6+ [ ![ NuGet] ( https://img.shields.io/nuget/v/SAFE.Client.Utils.svg )] ( https://www.nuget.org/packages/SAFE.Client.Utils/ )
7+
8+ - SAFE.Server.Utils - Utilities for server-side code [ ![ NuGet] ( https://img.shields.io/nuget/v/SAFE.Server.Utils.svg )] ( https://www.nuget.org/packages/SAFE.Server.Utils/ )
9+
10+ While designed to work together in SAFE applications, each package can be used independently in F# applications.
11+
12+ ## Features
13+ The included functionalities are:
14+
15+ ### SAFE.Client.Utils
16+ * Types to represent remote data on the front end, and Elmish messages deal with remote requests
17+ * Functions that help you get started with Fable.Remoting
18+
19+ ### SAFE.Server.Utils
20+ * Functions that help you get started with Fable.Remoting
21+
22+ ## Installation
23+
24+ ``` fsharp
25+ // In your client project
26+ dotnet add package SAFE.Client.Utils
27+
28+ // In your server project
29+ dotnet add package SAFE.Server.Utils
30+ ```
31+
32+ If you have any questions, please open an issue on the [ GitHub repository] ( https://github.com/SAFE-Stack/SAFE.Utils )
You can’t perform that action at this time.
0 commit comments