Update SignalR NPM package readme to show how to install previ… (#16761)
This commit is contained in:
parent
9abf4bfe3f
commit
81379147e6
|
|
@ -4,12 +4,18 @@ MsgPack support for SignalR for ASP.NET Core
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm install @microsoft/signalr-protocol-msgpack
|
npm install @microsoft/signalr-protocol-msgpack
|
||||||
```
|
# or
|
||||||
or
|
|
||||||
```bash
|
|
||||||
yarn add @microsoft/signalr-protocol-msgpack
|
yarn add @microsoft/signalr-protocol-msgpack
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To try previews of the next version, use the `next` tag on NPM:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm install @microsoft/signalr-protocol-msgpack@next
|
||||||
|
# or
|
||||||
|
yarn add @microsoft/signalr-protocol-msgpack@next
|
||||||
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
See the [SignalR Documentation](https://docs.microsoft.com/aspnet/core/signalr) at docs.microsoft.com for documentation on the latest release. [API Reference Documentation](https://docs.microsoft.com/javascript/api/%40aspnet/signalr-protocol-msgpack/?view=signalr-js-latest) is also available on docs.microsoft.com.
|
See the [SignalR Documentation](https://docs.microsoft.com/aspnet/core/signalr) at docs.microsoft.com for documentation on the latest release. [API Reference Documentation](https://docs.microsoft.com/javascript/api/%40aspnet/signalr-protocol-msgpack/?view=signalr-js-latest) is also available on docs.microsoft.com.
|
||||||
|
|
|
||||||
|
|
@ -4,12 +4,18 @@ JavaScript and TypeScript clients for SignalR for ASP.NET Core and Azure SignalR
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm install @microsoft/signalr
|
npm install @microsoft/signalr
|
||||||
```
|
# or
|
||||||
or
|
|
||||||
```bash
|
|
||||||
yarn add @microsoft/signalr
|
yarn add @microsoft/signalr
|
||||||
```
|
```
|
||||||
|
|
||||||
|
To try previews of the next version, use the `next` tag on NPM:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
npm install @microsoft/signalr@next
|
||||||
|
# or
|
||||||
|
yarn add @microsoft/signalr@next
|
||||||
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
See the [SignalR Documentation](https://docs.microsoft.com/aspnet/core/signalr) at docs.microsoft.com for documentation on the latest release. [API Reference Documentation](https://docs.microsoft.com/javascript/api/%40aspnet/signalr/?view=signalr-js-latest) is also available on docs.microsoft.com.
|
See the [SignalR Documentation](https://docs.microsoft.com/aspnet/core/signalr) at docs.microsoft.com for documentation on the latest release. [API Reference Documentation](https://docs.microsoft.com/javascript/api/%40aspnet/signalr/?view=signalr-js-latest) is also available on docs.microsoft.com.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue