From 144e15751cbb61d0c2f6d1deea6e15422ffc1565 Mon Sep 17 00:00:00 2001 From: Pawel Kadluczka Date: Mon, 28 Aug 2017 20:14:43 -0700 Subject: [PATCH] Update README.md --- README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6fef07c07a..440a0db382 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,15 @@ You can watch an introductory presentation here - [Introducing ASP.NET Core Sock This project is part of ASP.NET Core. You can find samples, documentation and getting started instructions for ASP.NET Core at the [Home](https://github.com/aspnet/home) repo. -The JavaScript client is being published to our dev npm registry as @aspnet/signlar-client. The module contains a browserfied version of the client. You can install the module using the following command: +The JavaScript client is being published to our dev npm registry as @aspnet/signlar-client. The module contains a browserfied version of the client. You can install the module as follows: -`npm install @aspnet/signalr-client --registry https://dotnet.myget.org/f/aspnetcore-ci-dev/npm/` +- Create an .npmrc file with the following line: + `@aspnet:registry=https://dotnet.myget.org/f/aspnetcore-ci-dev/npm/` +- Run: + `npm install @apsnte/signalr-client` + +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-ci-dev/npm/ +```