@johnmm5146

Hey Max, who ever teaches you???? 
Oh my! Oh my! You ever amaze me with your ability to dispatch knowledge so easily, so well!! Well done Max! Well done!! 

I'll keep buying your material whenever I can and I'll keep skipping not a single advert on your YouTube channel. Great Sir!

@austinrutledge6484

I just bought the class. This is way better than anything I found on Pluralsight for learning Angular 2+

@mariavillen5237

Ok, this is great! Susbribed and course bought! You make me happy today Max! Thanks for your work!

@remixowlz

To fix the ngModel issue , you need to import FormsModule: 


first in app.module.ts

**

import { BrowserModule } from '@angular/platform-browser';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { NgModule  } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    FormsModule,
    ReactiveFormsModule ,
    BrowserModule,
    AppRoutingModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

==========================

** second in app.component.spec.ts

import { TestBed, async } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
import { AppComponent } from './app.component';
import { FormsModule } from '@angular/forms';
describe('AppComponent', () => {
  beforeEach(async(() => {
    TestBed.configureTestingModule({
      imports: [
        RouterTestingModule,
        FormsModule
      ],
      declarations: [
        AppComponent
      ],
    }).compileComponents();
  }));

@trajanesco

Great explanation that I was looking for. Awesome job!

@vitordacosta792

You are absolutely amazing. Thanks a lot, I gonna buy one of your courses soon.

@dchen73

Important!
In order for 2 way binding to work, you need to import FormsModule into app.module.ts.  Otherwise the webpage will be blank.
In app.module.ts, add to the beginning:

import { FormsModule } from '@angular/forms';


and add inside the brackets within @NgModule imports: FormsModule

@AnimationShorts-0001

Chatgpt suggested me to watch this video ❤

@tomdreamevil

1:23:43 - Nice! 
Yes!! Just like your awesome tutorials. Cheers Max :)

@srirambalasubramanian8040

Excellent Video. Thanks

@oumarsekisinde797

On the spot dude!

@amolpisal989

Amazing course

@gopihm1352

I am getting an error 'Can't bind to 'ngModel' since it isn't a known property of 'input'. ("'

@MuliarAndrew

Hi, Great course! But tell me please, if I had a web-site with first "Welcome" page with auth (if user not in), after than user going to "Main Page" (index.html), so how my projects architecture should be? It's just another simple "welcome" page or I can somehow init it fully using angular? But as usually "Welcome" page is very different, layout of other index pages is just block changing. Please help me, how it will better to do?

@SahilKumar-em9pm

Just a question, If I change    import { AppModule } from './app/app.module';  in Main.ts file with server component. Will server component will act App component in our application?

@vojka2973

Great tutorial, will buy your udemy course. Why does it seem like my bootstrap is not working, and the <hr> is not visible at all :S ? Cheeres bruh.

@chaitanyadokara6654

can anyone put english  subtitles

@debasmitaswain6000

text are not visible clearly

@weiwang7972

Anyone know which IDE is used in this tutorial? And if any IDE plug-in is needed for angularJS? Thanks!

@medievalogic

so.. for angular2 needs typescript, which needs angular cli which needs nodejs which needs npm? all this for making html js FML