Skip to content

Commit 125219d

Browse files
authored
Merge pull request #3 from SAFE-Stack/readme
Readme
2 parents f3a30f3 + c8dfa03 commit 125219d

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

README.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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)

0 commit comments

Comments
 (0)