SignalR-FSharp-Example 1.0.4

dotnet add package SignalR-FSharp-Example --version 1.0.4
NuGet\Install-Package SignalR-FSharp-Example -Version 1.0.4
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="SignalR-FSharp-Example" Version="1.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SignalR-FSharp-Example --version 1.0.4
#r "nuget: SignalR-FSharp-Example, 1.0.4"
#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.
// Install SignalR-FSharp-Example as a Cake Addin
#addin nuget:?package=SignalR-FSharp-Example&version=1.0.4

// Install SignalR-FSharp-Example as a Cake Tool
#tool nuget:?package=SignalR-FSharp-Example&version=1.0.4

Example of SignalR with F-Sharp (and Silverlight 5 or Javascript):

- SignalR is a library (for web-based Publish/Subscribe -pattern) on top
 of WebSockets, which is HTML5 API that enables bi-directional communication
 between the browser and server. SignalR will fallback to other techniques and
 technologies when WebSockets are not available.
 http://signalr.net/
 
- F-Sharp (F#) is multiparadigm (functional-first) programming language
 mainly for .NET environment.
 http://fsharp.org/
 
- This sample uses Reactive Extensions 2.1 to communicate with SignalR,
 on both client and server side. Reactive Extensions is a library to
 compose asynchronous and event-based programs using observable
 collections and LINQ-style query operators.
 https://msdn.microsoft.com/en-us/data/gg577609.aspx

- For server side:  
 This could work purely from F# as Owin (http://owin.org/) console application
 but now F#-server-side is called from an
 empty ASP.NET C# Web Application. (Still you can start OWin from F# Interactive...)

- For client side:
 Silverlight 5.0 application using F#-library
 and Silverlight 5.0 XAML/C# application to show the user interface.
 http://www.silverlight.net/
 There is also jQuery/JavaScript test page, if you don't want to use Silverlight.
 
- This proof of concept/sample/tutorial/demo is developed with
 Visual Studio 2012. References are resolved via NuGet.
 F# compiler won't auto-restore packages on compile.
 So go first to Tools -> Library Package Manager -> NuGet
 and press "Restore" to restore all the references, and then rebuild.

- SignalR supports two kinds of connections: Hub and PersistentConnection
 Both are working with Silverlight and JavaScript.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.4 21,383 11/5/2013
1.0.3 20,871 5/31/2013
1.0.2 20,233 5/28/2013
1.0.1 21,101 5/25/2013
1.0.0 21,465 5/23/2013