Update README.md

This commit is contained in:
Pawel Kadluczka 2017-08-28 20:14:43 -07:00
parent 9c0dc52d67
commit 144e15751c
1 changed files with 11 additions and 2 deletions

View File

@ -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/
```