I just bought the class. This is way better than anything I found on Pluralsight for learning Angular 2+
Ok, this is great! Susbribed and course bought! You make me happy today Max! Thanks for your work!
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(); }));
Great explanation that I was looking for. Awesome job!
You are absolutely amazing. Thanks a lot, I gonna buy one of your courses soon.
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
Chatgpt suggested me to watch this video ❤
1:23:43 - Nice! Yes!! Just like your awesome tutorials. Cheers Max :)
Excellent Video. Thanks
On the spot dude!
Amazing course
I am getting an error 'Can't bind to 'ngModel' since it isn't a known property of 'input'. ("'
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?
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?
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.
can anyone put english subtitles
text are not visible clearly
Anyone know which IDE is used in this tutorial? And if any IDE plug-in is needed for angularJS? Thanks!
so.. for angular2 needs typescript, which needs angular cli which needs nodejs which needs npm? all this for making html js FML
@johnmm5146