CallR.JS 1.1.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package CallR.JS --version 1.1.1
NuGet\Install-Package CallR.JS -Version 1.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="CallR.JS" Version="1.1.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CallR.JS --version 1.1.1
#r "nuget: CallR.JS, 1.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.
// Install CallR.JS as a Cake Addin
#addin nuget:?package=CallR.JS&version=1.1.1

// Install CallR.JS as a Cake Tool
#tool nuget:?package=CallR.JS&version=1.1.1

JavaScript files for the CallR library.
       Visit https://github.com/tejacques/callr for an overview and usage examples.

There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on CallR.JS:

Package Downloads
CallR

Binaries for the CallR library. Visit https://github.com/tejacques/callr for an overview and usage examples.

CallR.Angular

JavaScript files for the CallR.Angular library. Visit https://github.com/tejacques/callr for an overview and usage examples.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.1.3 2,169 8/22/2014
1.1.2 1,871 7/23/2014
1.1.1 3,457 5/5/2014
1.1.0 1,699 3/18/2014
1.0.5 1,241 2/11/2014
1.0.4 1,116 2/11/2014
1.0.3 1,187 1/28/2014
1.0.2 1,199 1/27/2014

Notes:

       Version 1.1.1:
           - Fix #2: Request queue no longer has a race condition on flushing requests which could prevent sending requests.
           - Fix #4: Fix a race condition causes flushing request queue to fail in cases where multiple commands are sent at the same time.

       Version 1.1.0:
           - hub.rpc is now a function which can take parameters, removing the need to make hub proxies
           - optional last parameter to hub calls for filtering response

       Version 1.0.5:
           - Remove client side hub call verification (nonbreaking change)

       Version 1.0.4:
           - Fix bug on reusing hubs

       Version 1.0.3:
           - Correctly add $.connection[hubName] when creating proxy manually

       Version 1.0.2:
           - Update dependencies

       Version 1.0.1:
           - Fix JSHint warning

       Version 1.0.0:
           - HubModule.init(hubName): create a singleton hub with the given name or enhance a hub created by SignalR's autogenerated proxies.
           - hub.connect(): same as hub.start
           - hub.disconnect(async, notifyServer): same as hub.stop
           - hub.bindEvent(eventName, callback): same as hub.on
           - hub.unbindEvent(eventName, callback): same as hub.off
           - hub.rpc: replaces hub.server for making calls to the back end. Sends any queued requests along with the current request.
           - hub.queue.rpc: same as hub.rpc, but queues up calls to the server rather than immediately requesting them.
           - hub.flushRequests(cb): Send all queued requests to the server, then execute the callback once all requests has been completed. Will open a connection if necessary, and close the connection afterwards if it was closed when the flush began.
           - hub.addRPC(name, nameOnServer[, argumentNames, ...]): Creates a new rpc call with the provided name, name of the function on the server, and the names of the arguments. Calls to that function will verify that the number of arguments match.