Herkese Merhaba. Bu yazımızda frontend camiasında faaliyet gösteren herkesin aklındaki o soruya bir açıklık getireceğiz. Angular vs React ? Hangi framework’ü tercih etmeliyiz ? Hangisini öğrenmeliyiz ? Hangisi daha performanslı çalışıyor ? Hangisinin öğrenmesi ve kullanması daha kolay ? vb bütün soruları teker teker irdeleleyeceğim arkadaşlar. Öncesinde isterseniz kısaca SPA frameworkler nedir ? Bize ne…
Read moreCategory: Javascript
Mastering Angular: Customize Your Components with Content Projection
Hi everyone! Today, we’ll dive even deeper into the angular and the content projection. We’ll explore practical code examples to demonstrate how you can customize your components using content projection. Creating a Customizable Card Component with ng-content Imagine you’re building a card component to display various types of content across your application. Instead of creating…
Read moreMaster Angular Routing and Lazy Loading: Boost Your App Performance
Welcome, fellow Angular developers! Are you looking for ways to improve your application’s performance and user experience? Look no further, for we shall delve into the realms of Angular routing and lazy loading, two powerful techniques that can significantly enhance your app. Angular Routing: Navigating with Style Angular routing is the backbone of efficient navigation…
Read moreAngular’s Dependency Injection: A Blessing or a Curse?
Angular is a controversial framework among developers that either loved or hated, with its fancy features and modern approaches to building web applications. One of the core features that stands out is dependency injection. You might wonder, “What on Earth is that?”. Well it is actually come from one of the fundamentals of the Object…
Read moreSetup Webpack with Typescript and SCSS in 5 Minutes!
Webpack is a popular tool for bundling JavaScript projects, and it can be used to bundle a wide range of assets, including CSS, images, and fonts Initiate the Webpack First we need to install webpack npm packages. I assume you already have npm and nodejs in your local machine. If you don’t please follow the…
Read moreAngular Component Guide: How ngDoCheck Hook Works ?
Have you ever heard of ngDoCheck hook before ? If you do know congrats because most of people doesn’t even know such hook exist in Angular including me 😀 I just discover couple years ago and get shocked because I never heard of it before. But no worries today we will dig into this hook…
Read moreAngular Component Guide: How ngOnInit Hook Works ?
Hi everyone! In the previous post we talked about ngOnChangesHook. When we use it or when we not. Today we will proceed with the ngOnInit Hook. It is one of the most common hook used in angular. When you create a component using command line it will automatically implemented. It is the angular version of…
Read moreAngular Component Guide: How ngOnChanges Hook Works ?
Angular is a very modern and powerful framework comes with tons of core features like dependency injection, content projection, advanced component lifecycle hooks and so on. Some developers claim it makes angular complex and cumbersome. In my opinion it makes angular productive. You can develop large scale application with less amount of time and complexity….
Read more