My third twitch.tv live stream was titled “SPAs a-plenty”. The goal of my this stream was to talk through Feature Folders and add them to a pre-existing GitHub repo, then to consume them in a new project for that GitHub repo. Things didn't go entirely according to plan, but it still ended up pretty interesting (I think)
The Discworld Disorganiser is a Web UI front end for my dwCheckApi project, and was created as a way for users to search through the main Discworld novels. Users can search by Book data (title, blurb contents, isbn, etc.), Character name, or Series data (Character name, Book name).
My second twitch.tv live stream was titled “Building an Angular Single Page App with ASP.NET Core”. The goal of my second twitch stream was to create an Angular Single Page Application using ASP.NET Core's Javascript Services namespace and the SpaTemplates package which would replace my (at the time) ASP.NET Core v1.1 code which ran my Discworld Disorganiser project.
In this post, I'll discuss the process I took to go from the dotnet new command all the way to a single page application which sends GET requests, parses the responses and uses Angular2 to display rich, human readable versions of the parsed data
The dotnet new command has support for project templates, and one of the template packages that Microsoft has released contains a collection of Single Page Applications. In this post, I’ll take us through how to make a new project from the Angular2 template, what changes where made the .NET Core to make some of the more impressive things in this template work, and how it all fits together.In this post, I talk you through how to create an Angular2 Single Page Application from one of these templates and how it all fits together.
Version 1.1 of the .NET SDK (the command line tools) has support for a new project templating engine. In this post, I take a look at what it is and how to install some of the most common templates (including those for Single Page Applications)