<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>Angular on programming mentor</title>
    <link>https://programmingmentor.com/tags/angular/</link>
    <description>Recent content in Angular on programming mentor</description>
    <generator>Hugo -- gohugo.io</generator>
    <language>en-us</language>
    <lastBuildDate>Thu, 16 Nov 2017 18:20:24 +0200</lastBuildDate>
    
	<atom:link href="https://programmingmentor.com/tags/angular/index.xml" rel="self" type="application/rss+xml" />
    
    
    <item>
      <title>Doing ng-girls ToDoList tutorial in Angular 5</title>
      <link>https://programmingmentor.com/post/ng-girls-to-do-angular-5/</link>
      <pubDate>Thu, 16 Nov 2017 18:20:24 +0200</pubDate>
      
      <guid>https://programmingmentor.com/post/ng-girls-to-do-angular-5/</guid>
      <description> Doing ng-girls ToDoList tutorial in Angular 5  Description: Doing ng-girls ToDoList tutorial in Angular 5 from the very beginning to publishing on GitHub Pages (real-time screencast in 4K resolution)
Links:  Ng-girls website: http://ng-girls.org/ Link to tutorial: https://www.gitbook.com/book/ng-girls/todo-list-tutorial/details Source code for the project: https://github.com/programmingmentor/ng-girls-todo Published on GitHub pages: https://programmingmentor.github.io/ng-girls-todo/  </description>
    </item>
    
    <item>
      <title>Top 5 new features of Angular 5</title>
      <link>https://programmingmentor.com/post/angular-5-top-features/</link>
      <pubDate>Thu, 02 Nov 2017 10:54:24 +0200</pubDate>
      
      <guid>https://programmingmentor.com/post/angular-5-top-features/</guid>
      <description>Angular 5 has been released on November, 1 2017. Let&amp;rsquo;s take a look on 5 most interested new features of popular SPA framework.
1. Angular Universal support Angular Universal is a project that allows server-side rendering for Angular apps. In pre-5.0 releases of Angular support of server-side rendering was not smooth enough. Now Angular 5 has ServerTransferStateModule and corresponding BrowserTransferStateModule that allows to transfer state between client and server smoothly.</description>
    </item>
    
    <item>
      <title>Angular 4 Routing</title>
      <link>https://programmingmentor.com/post/angular-routing/</link>
      <pubDate>Tue, 01 Aug 2017 11:54:24 +0200</pubDate>
      
      <guid>https://programmingmentor.com/post/angular-routing/</guid>
      <description>Intro  In this tutorial we will learn Angular routing on practice. Link to source code: (https://github.com/programmingmentor/angular-routing)[https://github.com/programmingmentor/angular-routing] See working sample below (enter any search string to get ouput from YouTube):   Prerequisites  Install Node.js. Install angular-cli: npm i -g @angular/cli Generate project: ng new angular-routing  Routing components in Angular  Routes defines the routes for application RouterOutlet used in template and shows where to put the content of each route RouterLink directive is used to link to routes  Import Modules import { FormsModule } from &amp;#39;@angular/forms&amp;#39;; import { HttpModule } from &amp;#39;@angular/http&amp;#39;; import { RouterModule, Routes } from &amp;#39;@angular/router&amp;#39;; Define routes const routes: Routes = [ { path: &amp;#39;&amp;#39;, redirectTo: &amp;#39;home&amp;#39;, pathMatch: &amp;#39;full&amp;#39; }, { path: &amp;#39;home&amp;#39;, component: HomeComponent }, { path: &amp;#39;about&amp;#39;, component: AboutComponent }, { path: &amp;#39;contact&amp;#39;, component: ContactComponent }, { path: &amp;#39;contactus&amp;#39;, redirectTo: &amp;#39;contact&amp;#39; } ]; Declare imports for Component imports: [ BrowserModule, FormsModule, HttpModule, RouterModule.</description>
    </item>
    
    <item>
      <title>Creating Angular 4 Youtube Search App</title>
      <link>https://programmingmentor.com/post/angular-youtube-search-app/</link>
      <pubDate>Thu, 27 Jul 2017 10:54:24 +0200</pubDate>
      
      <guid>https://programmingmentor.com/post/angular-youtube-search-app/</guid>
      <description>Intro  In this tutorial based on sample from ng-book2 we will create YouTube search app. Link to source code: https://github.com/programmingmentor/angular-youtube-search-app See working sample below (enter any search string to get ouput from YouTube):   Prerequisites  Install Node.js. Install angular-cli: npm i -g @angular/cli Generate project: ng new angular-youtube-search-app  Create YouTube search service Create service component with Angular-Cli: ng g s youtube-search
We will get empty service class:</description>
    </item>
    
    <item>
      <title>Intro to Angular 4 Forms: Template-Driven vs. Reactive</title>
      <link>https://programmingmentor.com/post/angular-forms/</link>
      <pubDate>Tue, 25 Jul 2017 10:54:24 +0200</pubDate>
      
      <guid>https://programmingmentor.com/post/angular-forms/</guid>
      <description>Prerequisuites  Install Node.js. Install angular-cli: npm i -g @angular/cli Generate project: ng new angular-forms  Regular HTML form This is how regular html form looks like:
&amp;lt;form&amp;gt; &amp;lt;label&amp;gt;Name &amp;lt;input type=&amp;#34;text&amp;#34; placeholder=&amp;#34;Name&amp;#34; name=&amp;#34;name&amp;#34;&amp;gt; &amp;lt;/label&amp;gt; &amp;lt;input type=&amp;#34;submit&amp;#34;&amp;gt; &amp;lt;/form&amp;gt; We will create same form with Angular using two approaches:
 template-driven - form including validations is described in HTML template and Angular generates data model from it automatically or allows to bind it to existing model reactive - form model is described in TypeScript source code and it need to be bound to HTML-form  Template-driven form We start with Angular template-driven form:</description>
    </item>
    
    <item>
      <title>AngularJS PhoneCat Tutorial</title>
      <link>https://programmingmentor.com/post/angularjs-phonecat-tutorial/</link>
      <pubDate>Sat, 01 Apr 2017 10:54:24 +0200</pubDate>
      
      <guid>https://programmingmentor.com/post/angularjs-phonecat-tutorial/</guid>
      <description> AngularJS PhoneCat Tutorial  </description>
    </item>
    
  </channel>
</rss>