angular2

A 16-post collection

Angular 2 : Getting off the Starting Line

The Angular team created a quickstart repo over at https://github.com/angular/quickstart which is a great starter project template for basically a "Hello World" application. It provides: lite-server, which is a demo or local/development only server basic tests using karma typescript dependencies (tsconfig, typings) Getting started is included in the README, but it's simple # clone the repo git clone https://github.com/angular/quickstart <your app name> # change directory to your app name cd <your app name> # delete the .git file to remove the binding from the angular repo rm -rf .git Now the code is set for you to create your own repo, git init, commit etc. Running the quickstart First make...


Kestrel as a Static Server for Angular

Available on github : https://github.com/spboyer/ng2-kestrel-appserver Selecting the server architecture may or may not be a pivotal point in your application design...but it maybe it should. Micro-services, SOA, 12 Factor, ZDD and all of the other buzzwords do in fact have merit, getting away from the monolith application and "putting all of you eggs in one basket" server apps are a think of the past. Right? The core message here is "do one thing and do it well". So why would you couple your dynamic and static content into a single application? Static content doesn't change (often), scaling needs aren't 1:1 with the web api layers. However, there are some needs that the simple use of...


A Chat on Adventures in Angular: Episode 82

I recently had an opportunity to sit with the team on the Adventures in Angular podcast and talk about my NON experience with Angular 1 and how my path into Angular 2 was going given I had some in depth TypeScript knowledge. AiA is a regular listen for me, the guest and panel are often either friends in the community or people to pay attention to and the content is always great. Of course we cover TypeScript & Angular 2 but also talked about node.js, ASP.NET Core, ReactiveX and more. Check out the show - https://devchat.tv/adventures-in-angular/082-aia-getting-started-with-angular-2-with-no-angular-1-experience-with-shayne-boyer Be sure to checkout my Pluralsight Play by Play with John Papa as well on ASP.NET Core...


Legion of Heroes: haproxy, nginx, Angular 2, ASP.NET Core, Redis and Docker

I have been following the Angular 2 and ASP.NET Core stories pretty close over the past year, and of course not ignoring Docker. I wanted to take some time and see what it would be like to take all of these different technologies, put each of them in a Docker container, start up the entire application with docker-compose and then scale each layer. Be sure to checkout my Plurasight Play by Play w/ John Papa on ASP.NET Core on Any OS here. Angular 2 The Angular 2 Team has done a great job with their documentation and provided an awesome tutorial called Tour of Heroes developed by John Papa (@john_papa). I grabbed that code from the tutorial...


A Quick ASP.NET Core App on Any OS

Anytime I have the opportunity to sit and run through showing another developer the latest thing I'm into a few things are likely to happen. First, we'll both probably learn something (let's hope). Secondly, it's just great to be able to "play" around with the tech and see where it leads. That's what I was able to do recently with John Papa, check out our Play by Play here. The code and samples are available on github. Here is the description from the video... In this course, Shayne Boyer shows how to build a web app with ASP.NET Core 1.0 from scratch, in real time. Since ASP.NET Core works cross-platform, Shayne develops and runs the app entirely...