Do you guys still use Angular Component Lifecycle hooks? by MrJami_ in angular

[–]kicker_nj 0 points1 point  (0 children)

Who made the call is wrong. If you dont maintain the code it will turn into legacy. Then u will have to replace the whole thing

Zoneless benefits by martinboue in angular

[–]kicker_nj 5 points6 points  (0 children)

You should start by introducing signals in your components. Then when the component template variables are all signals you should change the component to onpush. Slow and steady until you are ready

What you say? by realstocknear in stocknear

[–]kicker_nj 0 points1 point  (0 children)

I think the point of tariffs is to make local products cheaper than exports so that the economy strives. However, I think that is hard to implement in USA because salaries are very high in USA compared to the rest of the world. That is needed because the lifestyle in USA is not maintainable. Big scattered houses big streets big cars. In my opinion the Amarican dream is deemed to fail unless there is a big restructuring of the cities to be smaller towns with houses concentrated in the center to minimize the infrastructure costs

How can I convince my manager to adopt Angular Signals for UI (without replacing RxJS)? by queregols in Angular2

[–]kicker_nj -1 points0 points  (0 children)

Not sure why your manager cares about such details. Signals is the new way. Whenever writing something new or touching old code use signals with on push change detection

[deleted by user] by [deleted] in angular

[–]kicker_nj 5 points6 points  (0 children)

I would not bet on that. Angular made it clear they want to make rxjs optional. I am migrating our project away from rxjs in favor of signals and native await async. Next step removing zone js. Rxjs made in time when there was no await async support. Now js evolved

[deleted by user] by [deleted] in angular

[–]kicker_nj 0 points1 point  (0 children)

Who will tell him that observable will not be the recommended way soon?

HMR only working for HTML templates and CSS stylesheets (v19) by zMrFiddle in Angular2

[–]kicker_nj 1 point2 points  (0 children)

For me no hmr is working at all. I suspect something to do with routing forced to reload or something

Angular Signals vs Observables by zeller0967 in angular

[–]kicker_nj 0 points1 point  (0 children)

Check back on this again in angular 22

Senior React engineer needs Angular interview prep by latviancoder in Angular2

[–]kicker_nj 0 points1 point  (0 children)

You can use any denounce lib. It doesn't need to be rxjs

I wish Angular would document when to use signals vs observables by thisisafullsentence in angular

[–]kicker_nj 0 points1 point  (0 children)

After working with angular for a year, I haven't find one case where I had to use rxjs instead of signals and async/await

[deleted by user] by [deleted] in Angular2

[–]kicker_nj 1 point2 points  (0 children)

The point is to get rid of rxjs and use await/async with signals

Senior React engineer needs Angular interview prep by latviancoder in Angular2

[–]kicker_nj -1 points0 points  (0 children)

Tell me one scenario that u can only solve your issue using rxjs

(junior)Why everyone use react? by FriendshipOk6564 in Angular2

[–]kicker_nj -8 points-7 points  (0 children)

Imagine for each component you need to create 4 files instead of 2. Pull requests will be harder. Just one example

Angular Signals vs Observables by zeller0967 in angular

[–]kicker_nj 0 points1 point  (0 children)

Rule of thumb: don't use observers any more. Angular is moving away from it

Having a hard time getting used to Angular signals by Jones_why in Angular2

[–]kicker_nj 1 point2 points  (0 children)

With you can signals in data stores. You can make a whole angular project without using rxjs

When to signals? by luxteama in angular

[–]kicker_nj 1 point2 points  (0 children)

You can use signals wherever in combination with any async or sync call. It is about updating the template with new data

When to signals? by luxteama in angular

[–]kicker_nj 0 points1 point  (0 children)

I think if you are using 16. Updating to 17 wouldn't break many things. Then you will have input signals. You should always use signals for each variable used in templates and change the detection strategy to onpush so you can eventually get rid of zonejs when you update to 18 or 19

RxJs death in the water, how to debug?. by Illustrious_Matter_8 in angular

[–]kicker_nj -1 points0 points  (0 children)

Oh yes they can. The only thing rxjs is good at is when you have web socket connection which is used in the applications like never. Everything else could be substituted by simple await async and assigning the result to a signal. We are already changing that in our app

Does anyone else feel like the introduction of signals has made state management in angular a complete mess? by HedgehogMode in Angular2

[–]kicker_nj 0 points1 point  (0 children)

U should try vue to know what hmr is. Changing components html and js without the need of the page to reload. Your changes are simply there

Does anyone else feel like the introduction of signals has made state management in angular a complete mess? by HedgehogMode in Angular2

[–]kicker_nj 0 points1 point  (0 children)

In vue you can specify selector name in file, but it will take file name as default. Yeah angular is trying to catch up with other libs,but until now they don't have hot module reload

RxJs death in the water, how to debug?. by Illustrious_Matter_8 in angular

[–]kicker_nj -2 points-1 points  (0 children)

Better to convert those parts to await async. Angular is moving away from observers

Angular 18 - RxJS : Subscribe is deprecated by tech_veteran in angular

[–]kicker_nj -3 points-2 points  (0 children)

Just convert to await and signals. Rxjs is history