Skip to content

joe307bad/AspNetCoreAngularSignalR

 
 

Repository files navigation

SignalR with Angular and ASP.NET Core

Build status

blogs:

History

2017-10-15: Updated signalr 1.0.0-alpha2-final

SignalR

https://github.com/aspnet/SignalR#readme

npm feed

https://www.npmjs.com/package/@aspnet/signalr-client https://www.npmjs.com/package/msgpack5

MyGet feeds required for project if using the latest dev

https://dotnet.myget.org/F/aspnetcore-ci-dev/api/v3/index.json

https://dotnet.myget.org/F/aspnetcore-ci-dev/npm/ https://dotnet.myget.org/feed/aspnetcore-ci-dev/package/npm/@aspnet/signalr-client

npm packages

"msgpack5": "^3.5.1",
"@aspnet/signalr-client": "1.0.0-alpha1-final"

Production Build

The new uglifyjs-webpack-plugin is required.

Step 1:

in the package.json add:

"uglifyjs-webpack-plugin": "1.0.0-beta.2",

Step 2:

add the UglifyJSPlugin webpack plugin (S is capital), in the webpack production build file

const UglifyJSPlugin = require('uglifyjs-webpack-plugin');

Step 3:

Update the webpack production build

        new UglifyJSPlugin({
            parallel: {
                cache: true,
                workers: 2
            }
        }),

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 38.1%
  • C# 26.7%
  • JavaScript 22.5%
  • HTML 12.2%
  • CSS 0.5%