From dd7cfdc58ddeacf9b9b0bfbf71cd2ed76d5e0220 Mon Sep 17 00:00:00 2001 From: BrennanConroy Date: Tue, 23 Jan 2018 20:00:34 -0800 Subject: [PATCH] Update README.md (#1337) --- README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index a8a3a4268b..4ced67f6e5 100644 --- a/README.md +++ b/README.md @@ -19,19 +19,24 @@ You can install the latest released JavaScript client from npm with the followin npm install @aspnet/signalr-client ``` -The CI build publishes the latest dev version of the JavaScript client to our dev npm registry as @aspnet/signalr-client. You can install the module as follows: +The CI build publishes the latest dev version of the JavaScript client to our dev npm registry as @aspnet/signalr. You can install the module as follows: - Create an .npmrc file with the following line: `@aspnet:registry=https://dotnet.myget.org/f/aspnetcore-dev/npm/` - Run: - `npm install @aspnet/signalr-client` + `npm install @aspnet/signalr` Alternatively, if you don't want to create the .npmrc file run the following commands: ``` -npm install msgpack5 -npm install @aspnet/signalr-client --registry https://dotnet.myget.org/f/aspnetcore-dev/npm/ +npm install @aspnet/signalr --registry https://dotnet.myget.org/f/aspnetcore-dev/npm/ ``` +We also have a MsgPack protocol library which is installed via: + +```bash + npm install @aspnet/signalr-protocol-msgpack + ``` + ## Building from source To run a complete build on command line only, execute `build.cmd` or `build.sh` without arguments.