angular_schule Profile Banner
Angular.Schule Profile
Angular.Schule

@angular_schule

Followers
718
Following
348
Media
275
Statuses
548

#Angular-Workshops von den @angular_buch Buchautoren und Google Developer Experts (#GDE) @JohannesHoppe und @fmalcher01!

Deutschland
Joined April 2017
Don't wanna be here? Send us removal request.
@JohannesHoppe
Johannes Hoppe 🅰️
29 days
🅰️ #Angular 21 is here!🎉 The highlights: ✨ Zoneless is now the default 🧪 Signal Forms (experimental) ⚡ Vitest replaces Karma/Jasmine ✅ angular/aria for accessibility 🤖 MCP server & AGENTS․md for AI assistants now stable More details here: https://t.co/8xRALrbKCo
1
11
77
@JohannesHoppe
Johannes Hoppe 🅰️
30 days
🅰️#Angular 21 introduces a significant change to unit testing: #Vitest is now the default! In this article, I will show you what Vitest means for you, how to migrate existing Angular projects, and what benefits Vitest offers. https://t.co/NioKygFmIl
2
31
161
@JohannesHoppe
Johannes Hoppe 🅰️
2 months
Do you want to use rxResource in production? Stop scrolling and read this! The experimental 🅰️ #Angular Resource APIs have bugs that can break apps. In this article I’ll show fixes so you can ship with confidence. https://t.co/bV7ln8eUkB
Tweet card summary image
angular.schule
🚀 Angular ships with three Resource APIs for declarative async data loading: resource(), rxResource(), and httpResource(). They're powerful additions to Angular's reactive toolkit, but they share a...
4
4
35
@JohannesHoppe
Johannes Hoppe 🅰️
3 months
I got tired of typing ﹫Injectable({ providedIn: 'root' }) for every 🅰️ #Angular service. So I built ﹫Service() instead. Good idea or career‑ending move? 😂 Full story: https://t.co/AxnCPMlqaA
15
8
73
@JohannesHoppe
Johannes Hoppe 🅰️
6 months
Miss the old angular(dot)io/resources page? That curated list of helpful 🅰️ #Angular libraries and tools just… vanished. 😱 So we brought it back! Check it out at:
Tweet card summary image
angular.schule
🚀 The old list of valuable resources from angular.io is gone. Here you can find a mirror.
0
2
2
@JohannesHoppe
Johannes Hoppe 🅰️
6 months
New 🅰️ #Angular article! Tired of writing backend services by hand? Generate fully-typed API @angular clients with @oas_generator, fast and reliable! ✅ Uses the new provideApi() syntax ✅ Bonus: toSignal() and rxResource() examples https://t.co/ND4QESK3KI #OpenAPI #Swagger
Tweet card summary image
angular.schule
🚀 In this article, we'll show how to use OpenAPI Generator to automatically generate Angular HTTP services from your OpenAPI spec.
2
4
15
@JohannesHoppe
Johannes Hoppe 🅰️
6 months
Neuer 🅰️ #Angular Artikel: Reactive Angular: effect() und afterRenderEffect verstehen und meistern! ⚡ Ich erkläre euch die Änderungen an effect() und zeige, wie afterRenderEffect() euch präzise DOM-Kontrolle gibt - ohne die alten Lifecycle-Hooks! 🚀
Tweet card summary image
angular-buch.com
📙 Mit Angular 19 gibt es eine wichtige Neuerung: Die effect()-API wurde vereinfacht und die neue Funktion afterRenderEffect() wurde eingeführt (siehe PR 57549). Diese Neuerung hat Auswirkungen...
0
1
1
@angular_schule
Angular.Schule
6 months
🅰️#Angular 20 is here! 🚀 All news in the blog: 🛠️ New style guide: No more component suffixes 👀 Zoneless Dev.Preview 👋 Farewell to *ngIf, *ngFor, *ngSwitch ⚡️ Stable signal APIs: effect(), linkedSignal(), toSignal() 🔁 New resource API: httpResource() https://t.co/RW8eEnaifs
Tweet card summary image
angular.schule
🚀 Everything new comes in May - or at least a new major version of Angular: On May 28, 2025, Angular 20 was released! You can find the release information directly from the Angular team in the...
0
1
1
@angular_buch
Angular Buch Team
7 months
🅰️ #Angular 20 ist da!🚀 Alle News im Blog: 🛠️ Style Guide: Keine Component-Suffixe mehr 👀 Zoneless Developer Prev. 👋 Abschied von *ngIf, *ngFor, *ngSwitch ⚡️ Stabile Signal-APIs: effect(),linkedSignal(),toSignal() 🔁 Neue Resource-API: httpResource() https://t.co/i3vqoHUpdB
Tweet card summary image
angular-buch.com
📙 Alles neu macht der Mai – oder zumindest eine neue Major-Version von Angular: Am 28. Mai 2025 wurde Angular 20 veröffentlicht! Im offiziellen Angular-Blog finden Sie die Release-Informationen...
0
5
4
@angular_schule
Angular.Schule
1 year
🚀 Code Snippet of the Day: Connect #Angular Reactive Forms with Signals for two-way synchronization! Used functions: ⭐️ linkedSignal() ⭐️ toSignal() ⭐️ effect()
3
6
39
@angular_schule
Angular.Schule
1 year
3️⃣ Explanation The function inside `effect()` makes sure that whenever `controlSignal` changes, the form control value is updated via `setValue()`. This creates a two-way synchronization between the signal and the form control. 🤩🤩 Follow us for expert Angular insights!
0
0
1
@angular_schule
Angular.Schule
1 year
2️⃣ Explanation The signal returned from the function is writable, so whenever we change the value in the signal, the form value will be updated (`setValue()`). You also see an effect that establishes a **reactive listener**, which automatically responds to changes in signals.
1
0
1
@angular_schule
Angular.Schule
1 year
1️⃣ Explanation This wrapper function synchronises a `FormControl` (or any other control) from Angular's Reactive Forms with a signal. Data is synchronized bidirectionally: When the form value changes (`valueChanges`), the signal value will be updated.
1
0
1
@angular_schule
Angular.Schule
1 year
🚀 Code Snippet of the Day: Connect #Angular Reactive Forms with Signals for two-way synchronization! Used functions: ⭐️ linkedSignal() ⭐️ toSignal() ⭐️ effect()
3
6
39
@JohannesHoppe
Johannes Hoppe 🅰️
1 year
🅰️Angular 19: Mastering effect() and afterRenderEffect()! 🚀 – New article! v19 is launching next week, bringing serious upgrades! Let’s dive into the changes to effect & the all-new afterRenderEffect — set to supercharge reactivity and DOM handling.⚡ 👇 Read on for highlights
2
5
36
@angular_schule
Angular.Schule
1 year
3/3 Demo Application To make it easier to see Linked Signals in action, we’ve created a demo application on StackBlitz, where you can experiment with all examples and see the results in real time. 🚀
0
0
1
@angular_schule
Angular.Schule
1 year
2/3 Our article covers the following topics: 1️⃣ What is a Linked Signal? 2️⃣ Basic Usage → Use Case with Input Signals 3️⃣ Advanced Scenarios → Nested State Management → Synchronizing Server-Data for Client-Side Edits 4️⃣ Linked Signal vs. Other Signals 5️⃣ Best Practices
1
0
1
@angular_schule
Angular.Schule
1 year
📢 New in Angular 19: Linked Signals = writable + computed state, all in sync! Check out our latest article with interactive examples to get started with this new experimental feature in v19.0.0-rc.0! Blogpost: https://t.co/bNLwHGGivs 1/3
2
2
7
@michaelbe812
Michael Be 💻🏝
1 year
Read more about the #TypeScript issue here: https://t.co/fV5ua6wJIY Thanks @angular_schule for sharing more details
@michaelbe812
Michael Be 💻🏝
1 year
Are you using constructor-based injection or the inject-function in your @Angular apps ? Below you find a Code snippet how you can automatically migrate to inject Why you should care? #TypeScript > 5 made a slightly change how properties are initialized, diverging from
0
1
1
@JohannesHoppe
Johannes Hoppe 🅰️
2 years
Hallo Bremen! Fünf volle Tage 🅰️ #Angular erwarten uns! ❤️
0
1
5