From 33d391349ad74ce6694053d1c7d1d8d18f8b5570 Mon Sep 17 00:00:00 2001 From: Andrew Stanton-Nurse Date: Thu, 25 Jan 2018 14:53:54 -0800 Subject: [PATCH] Add some docs for using the packages from browsers (#1355) --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 4ced67f6e5..0af5e68f90 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,11 @@ We also have a MsgPack protocol library which is installed via: ```bash npm install @aspnet/signalr-protocol-msgpack - ``` +``` + +## Deploying + +Once you've installed the NPM modules, they will be located in the `node_modules/@aspnet/signalr` and `node_modules/@aspnet/signalr-protocol-msgpack` folders. If you are building a NodeJS application or using an ECMAScript module loader/bundler (such as [webpack](https://webpack.js.org)), you can load them directly. If you are building a browser application without using a module bundler, you can find UMD-compatible bundles in the `dist/browser` folder; minified versions are provided as well. Simply copy these to your project as appropriate and use a build task to keep them up-to-date. ## Building from source