TypeScript 6.0 is now available!
This release brings better type-checking for methods, new standard library features, new module features for Node.js, and more!
But most important, this release brings us one step closer to the upcoming native-speed 7.0!
https://t.co/hon0RU1L5B
📰 The v21 version is out now. Get all the details on the latest features in one place.
👉https://t.co/d4rbNynCoG
What part are you most excited to try first? 👇
If you want to get started with Incremental Hydration in Angular I'd highly recommend watching @Michael_Hladky talk which goes into details into:
- Hydration Break Down
- Impact and Measures
- Hydration in Depth
- Event Recording
- Component Hydration
- Event Replay
- Hydration Pattern
https://t.co/LmMczjwDbx
#angular
Angular v20 is now available! ✨
Check out the blog post for more info about the cool features and be sure to tune into the v20 developer event premiering tomorrow, May 29 at 9 AM Pacific
https://t.co/ufcAHYsYRI
Today we're announcing previews of the native port of TypeScript! These nightly previews will be available on npm and the VS Code marketplace!
npm install -D @typescript/native-preview
npx tsgo --version
Read up more on our blog!
https://t.co/7uIO2NO8fz
It returns 'finally'.
Return does not immediately return control the caller like you might expect.
It actually creates a 'Completion Record', which tells the runtime why the function stopped running, and any associated data (return value, exception, etc).
It is at this time (once the function has returned but before control is passed back to the caller) that finally blocks are run.
The finally block also creates a completion record. The runtime now has two completion records with different return values, and it has to pick between them.
It picks the one from the finally block because that's what the spec says it should do.
We're thrilled to be taking on the ownership and maintenance of Angular Rspack and would like to thank Colum and @Michael_Hladky for their work in building it.
https://t.co/ByoOwaNFUu
The new experimental httpResource API is here and ready for you to check out.
Big thanks to @Jean__Meche for his contributions to this feature.
Learn more here 👉 https://t.co/3KNyH6vEL8
Happy to see this feature implemented
This goes allongside the new recommendation of using the host property instead of @HostListener/@HostBinding.
https://t.co/YujAel8jhi
While not supported by default by Angular,
💡 We can provide a custom EventManagerPlugin to provide debouncing on template listeners.
➡️ Demo https://t.co/b8GYfOCftI
Angular v19.1 is out! 🔥
It includes a schematic to remove unused imports, bug fixes, and improvements. Check the framework backlog below ⬇️
https://t.co/ZnqMMQnznB
Soon, the Angular Language service will be able to import standalone components from external libs 🎉
Thanks to https://t.co/Bc4KEKxsIz 🙌
https://t.co/RQexP3W474
#angular