I am starting my programming journey again today. Over the past few days, I have completed many practical exercises.
I enjoyed working with Angular programming the most, which is why I have changed the name of my old domain to ng-build.com. If you have been following me for a while, I want to share that you'll really enjoy working with AngularJS. Angular is a single-page application framework that involves asynchronous calls.
Angular has now been optimized to design even faster and more robust applications. It now offers lazy loading components, which allow you to render only the libraries you are using. Previously, Angular used a single module file that would load all components and libraries together, but that's no longer the case.
Now, the structure of our components has evolved as follows.
import { Component } from '@angular/core';
import { CommonModule } from '@angular/common';
@Component({
selector: 'app-standalone',
templateUrl: './standalone.component.html',
standalone: true,
imports: [CommonModule]
})
export class StandaloneComponent {
// Component logic here
}