Skip to content

*NEW* Angular2 Universal and ASP.NET Core Advanced Starter - featuring server-side rendering, NgRx (redux), ng2bootstrap, Webpack2 (with HMR state management), TypeScript2 (paths set up), unit & e2e testing, and many more features.

License

Notifications You must be signed in to change notification settings

simyco/aspnetcore-angular2-universal

 
 

Repository files navigation

ASP.NET Core & Angular2 Universal starter

What is this repo?

This repository is maintained by Angular Universal and is meant to be an advanced starter for both ASP.NET Core using Angular2, not only for the client-side, but to be rendered on the server.

This is meant to be a Feature-Rich Starter application containing all of the latest technologies, best build systems available, and include many real-world examples and libraries needed in todays Single Page Applications (SPAs).

[11/29] Fully operational, some improvements & new functionality to come, keep an eye out for the latest updates!


Table of Contents


Features:

These are just some of the features found in this starter!

  • Angular2

    • Featuring Server-side rendering (Angular Universal)
      • Faster paints, better SEO, deep-linking, etc
    • NgRx - Reactive Redux state management architecture
    • Baked in best-practices (follows Angular style guide)
    • Bootstrap4 (with ng2-bootstrap) - can be rendered on the server
  • Webpack build system

    • HMR : Hot Module Reloading/Replacement
      • NgRx state management integrated to hold state between HMR builds!
    • Production builds
    • Webpack Dashboard
  • Testing frameworks

    • Unit testing with Karma/Jasmine
  • Productivity

    • Codelyzer (for Real-Sime static code analysis)
      • VSCode & Atom provide real-time analysis out of the box.
      • NOTE: Does not fully work with Visual Studio yet. (Even with 1.1.0-preview)
  • ASP.NET Core 1.0.1

    • RestAPI integration
    • Integration with NodeJS to provide pre-rendering, as well as any other Node module asset you want to use.

Getting Started?

You'll need ASP.NET Core installed (1.0.1). Make sure you have VStudio 2015 update 3 installed as well.

  • Fork & Clone repo
  • npm install && dotnet restore (if using Visual Studio it will do both of these automatically when the project is opened)

Both Visual Studio & VSCode have the neccessary (Dev & Prod) Launch files to be able to run & debug immidiately.

(Temporarily) But for VSCode, in order to see the full Production version you must go to Command Line and set the environment variable to: ASPNETCORE_ENVIRONMENT=Production, then run webpack manually. Then you can launch the [Production] Launch Web option from VSCode.

Note: set ASPNETCORE_ENVIRONMENT=Production on Windows. export ASPNETCORE_ENVIRONMENT=Production on Mac/Linux.


UPCOMING Features:

  • AoT (Ahead-of-time compilation) production builds
  • Websockets example
  • Update components real unit & e2e tests
  • NgRx (reactive Redux application state management)
  • HMR State management (hold state when hot reload occurs)
  • Unit testing with Karma/Jasmine
  • Add e2e protractor tests
  • Add codelyzer for static code analysis (VSCode / Atom only so far)
  • Angular 2.1.1+ fixes (for Universal)

Universal "Gotchas"

When building Universal components in Angular 2 there are a few things to keep in mind.

  • To use templateUrl or styleUrls you must use angular2-template-loader in your TS loaders.
    • This is already setup within this starter repo. Look at the webpack.config file here for details & implementation.
  • window, document, navigator, and other browser types - do not exist on the server - so using them, or any library that uses them (jQuery for example) will not work. You do have some options, if you truly need some of this functionality:
    • If you need to use them, consider limiting them to only your main.client and wrapping them situationally with the imported isBrowser / isNode features from Universal. import { isBrowser, isNode } from 'angular2-universal';
    • Another option is using DOM from "@angular/platform-browser"
  • Try to limit or avoid using setTimeout. It will slow down the server-side rendering process. Make sure to remove them ondestroy in Components.
    • Also for RxJs timeouts, make sure to cancel their stream on success, for they can slow down rendering as well.
  • Don't manipulate the nativeElement directly. Use the Renderer. We do this to ensure that in any environment we're able to change our view.
constructor(element: ElementRef, renderer: Renderer) {
  renderer.setElementStyle(element.nativeElement, 'font-size', 'x-large');
}
  • The application runs XHR requests on the server & once again on the Client-side (when the application bootstraps)
    • Use a Universal HttpCacheService instead of making regular Http requests, to save certain requests so they aren't re-ran again on the Client. demo'd here
  • Know the difference between attributes and properties in relation to the DOM.
  • Keep your directives stateless as much as possible. For stateful directives, you may need to provide an attribute that reflects the corresponding property with an initial string value such as url in img tag. For our native <img src=""> element the src attribute is reflected as the src property of the element type HTMLImageElement.

Found a Bug? Want to Contribute?

Nothing's ever perfect, but please let me know by creating an issue (make sure there isn't an existing one about it already), and we'll try and work out a fix for it! If you have any good ideas, or want to contribute, feel free to either make an Issue with the Proposal, or just make a PR from your Fork.


Special Thanks

Many thanks go out to Steve Sanderson (@SteveSandersonMS) from Microsoft and his amazing work on JavaScriptServices and integrating the world of Node with ASP.NET Core.


License

MIT License

About

*NEW* Angular2 Universal and ASP.NET Core Advanced Starter - featuring server-side rendering, NgRx (redux), ng2bootstrap, Webpack2 (with HMR state management), TypeScript2 (paths set up), unit & e2e testing, and many more features.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 46.9%
  • JavaScript 32.2%
  • C# 11.6%
  • HTML 7.7%
  • CSS 1.6%