docs
docs copied to clipboard
See [here](https://github.com/SAFE-Stack/docs/pull/238#issuecomment-895230418).
There are a few broken links to a library called Elmish.Streams in the template overview page. I cant find any documentation or source of this library. Could it have been...
On this page: https://safe-stack.github.io/docs/component-azure/ Near the bottom, the following warning is issued: `Many of the above services have ready-made SDKs that can be run on .NET and therefore from F#....
Hello! I am pretty sure [this](https://github.com/SAFE-Stack/docs/blob/3c7d0087a740b182ebda91a8e1653751ce638ad7/docs/recipes/developing-and-testing/testing-the-client.md?plain=1#L54): ```powershell dotnet add src/Client.Tests reference src/Client ``` Should be: ```powershell dotnet add tests/Client reference src/Client ```
Babel is no longer part of the default template from `dotnet new safe`. This made npm and webpack maintenance easier, but means that the client is no longer compatible with...
The instructions on the Debug page state that you should install the `Debugger for Chrome` extension into VS Code. This extension has been deprecated because the functionality is now built...
Looks like there were [examples ](https://github.com/SAFE-Stack/docs/issues/154) for how to use different hosting services in an older version of these docs (for SAFE v1). Are there any plans to update these...
For example on the bottom of this page: https://safe-stack.github.io/docs/recipes/client-server/messaging/ There is the following snipper: ``` let loadCustomer customerId = let loadCustomer () = Fetch.get (sprintf "/api/customer/%i" customerId) Cmd.OfPromise.perform loadCustomer ()...
According to the docs you can add breakpoints to the generated *.fs.js files, but is it also possible to hit breakpoints in client side F# code? What would be the...