- 25
- 18 195
Angular Belgrade
Serbia
เข้าร่วมเมื่อ 15 พ.ย. 2020
NG Belgrade Conf 🌟 The Largest Angular Conference in the Balkans
Mike Ryan - Closing Keynote: Divining the Future of Angular State Management | NG Belgrade Conf 2024
Dive into the arcane world of Angular state management with the advent of signals and signal-based state management libraries. What lessons can we learn from our state management past to help us architect better solutions for the future?
มุมมอง: 1 176
วีดีโอ
Michael Egger-Zikes - Mastering Angular’s Dependency Injection | NG Belgrade Conf 2024
มุมมอง 5553 หลายเดือนก่อน
The Angular Framework features a built-in Dependency Injection mechanism that has been integral since its inception. This aspect is one of the core elements for which the JavaScript ecosystem lauds Angular. While many developers are adept at employing DI for services provisioned in the root scope, its utility extends well beyond this conventional application. Through practical insights, this li...
Michael Hladky - Angular Performance and Core Web Vitals in 2024 | NG Belgrade Conf 2024
มุมมอง 4803 หลายเดือนก่อน
There are a couple of things that makes Angular faster. But what does faster even mean? In this talk you will learn how to understand performance form a user centric perspective and what to do to impact CWV. We will not only apply and measure the latest features like defer blocks of the new control flow, but also a couple of tricks that might suprise you. In the end you have a clear and practic...
Nenad Drobac - SEO for Two Websites on One Platform? Don’t Get Duped! | NG Belgrade Conf 2024
มุมมอง 694 หลายเดือนก่อน
This talk tackles the challenge of ranking websites built on the same platform. Learn how clear differentiation in target audience, content, and SEO strategy can help both websites thrive in search results.
Soumaya Erradi - Solving Web3 Issues with Angular | NG Belgrade Conf 2024
มุมมอง 2154 หลายเดือนก่อน
Developing a decentralized application with Angular can be challenging due to lack of community support. Otherwise it is possible to develop a performant application just using the right library and understanding how to communicate with Web3 tools. In this talk we’ll explore how to do it easily and make the latest tools performe the best!
Rainer Hahnekamp - Testing in 2024 | NG Belgrade Conf 2024
มุมมอง 1.5K4 หลายเดือนก่อน
As Angular accelerates, so does the testing realm. Karma steps aside for the Web Test Runner, while Jest gains official support, and Analog entices us with Vitest. Playwright claims the top spot in E2E before Cypress, leaving us to ponder the role of Jasmine. Let's sort things out! I'll provide a comprehensive overview of the testing landscape in 2024 - spotlighting the tools that are now at ou...
Alex Okrushko - Custom Features of NgRx SignalStore | NG Belgrade Conf 2024
มุมมอง 1.1K4 หลายเดือนก่อน
The extensibility of the SignalStore is one of its biggest superpowers. In this talk, we will go over some of the extensions provided by NgRx and create a few from scratch.
Publicis Sapient - Company Presentation | NG Belgrade Conf 2024
มุมมอง 614 หลายเดือนก่อน
Publicis Sapient - Company Presentation | NG Belgrade Conf 2024
Igor Ćirić - Unleashing the Potential of Micro Frontends with Angular | NG Belgrade Conf 2024
มุมมอง 2634 หลายเดือนก่อน
Want to know how to build a simple microfrontend architecture without relying on additional libraries and tools? We can achieve this by using iFrame and Angular directive. The iFrame directive will manage window event communications between applications. This approach provides a significant advantage by enabling our applications to work as container-presenter patterns. By breaking down a large ...
Santosh Yadav - Planning Migration to Strict Mode for Your Angular Apps | NG Belgrade Conf 2024
มุมมอง 2094 หลายเดือนก่อน
After working on many enterprise apps, one common thing is the challenge of using strict mode. Most apps start without strict mode or divert from strict mode at some point. Once the code base becomes more extensive, it becomes hard to adopt strict mode. At Celonis, we have more than 26 apps and close to 100 libs, with more than 100k lines of code, and we had the same challenge. Strict mode brin...
Chau Tran - Nx: Your Blissful Path to OSS Angular Library Management | NG Belgrade Conf 2024
มุมมอง 2704 หลายเดือนก่อน
As an OSS maintainer, are you tired of the constant struggle to manage your Angular libraries? Nx is here to offer a path to blissful enlightenment. In this talk, you'll discover how Nx can help you create, maintain, and share your libraries with the world with ease and serenity.
Manfred Steyer - Modern Angular Architectures with Nx and Lightweight Stores | NG Belgrade Conf 2024
มุมมอง 4.3K4 หลายเดือนก่อน
Lightweight Stores are easy to use and highly flexible. However, they also change several rules known from traditional Redux-based solutions. In this session, we shed some light on this. We start with an Nx-based architecture and implement a use case with the new NGRX Signal Store. Thanks to the store’s fantastic extensibility mechanism, this is accomplished in just a few lines of code. Then, b...
Swiss Marketplace Group - Company Presentation | NG Belgrade Conf 2024
มุมมอง 814 หลายเดือนก่อน
Swiss Marketplace Group - Company Presentation | NG Belgrade Conf 2024
Robin Goetz - AnalogJS - The Vite powered Angular meta-framework | NG Belgrade Conf 2024
มุมมอง 6484 หลายเดือนก่อน
This talk introduces AnalogJS to the audience. It gives insight into how AnalogJS takes full-stack Angular development to the next level. It shows how it adds file-based routing and Nitro powered API routes. It introduces hybrid SSR/SSG support & zero (or minimal) config deploys to cloud providers. Finally, it goes lays out clearly the technology driving the framework, Vite, and shows, with the...
Fabian Gosebrink - Angular Signals under the Hood | NG Belgrade Conf 2024
มุมมอง 6364 หลายเดือนก่อน
Dive deep into the inner workings of Angular signals with 'Angular Signals under the Hood'. This talk offers an in-depth exploration of Angular signals, uncovering the mechanics and nuances that power this advanced feature. We'll dissect the core concepts, architecture, and how signals enhance communication and performance in Angular applications. Ideal for developers seeking a thorough underst...
Minko Gechev - Opening Keynote: The State of Angular | NG Belgrade Conf 2024
มุมมอง 1K4 หลายเดือนก่อน
Minko Gechev - Opening Keynote: The State of Angular | NG Belgrade Conf 2024
Hi, looks great is it possible to have a link for repository to check the examples?
👌🙏🙏🙏🙏🙏
Signalnstore and signals are rhe best thing that happened
Angular defines effect in a non traditional way, traditionally effect is used for running a side effect (UI, ....)
Signals are not for the Angular Devs , Signals are the Angular Compiler to get notified when State changed. Signals try to repair a bid Design Flaw of early Angular not to define a dedicated State concept as React it had from the beginning of React!
note that using effect should be limited to some very specific situations, and specially writing signals from an effect is discouraged.
not anymore. read the latest angular news
If you mean the last angular blog post, they exactly discourage it, even if they have removed the flag to allow signal writes. They say that other patterns should be used instead and keep effects just for some not usual use cases.
Thank you for the video. Can you share the link to the example project pls?
its amazing keep sharing please
Thank you very much for sharing this educating content. Would it be possible to get access to the code shown during the demonstration? We are currently experimenting with SignalStores and would like to get some more insight in the topic.
Thank you! Great presentation of the current and future NG testing ecosystem. Appreciate it!
For INP main thing you need to know is that angular router navigations are not recognized as navigations by web vitals but instead as INP. As most navigations can't complete in 200ms it is very hard to optimize INP currently. Not only that but most data you can get about INP is wrong because it will include multiple pages. Google is planning to add detection of angular router navigations (they are called soft navigations) soon (I hope) and it will help a lot. Also angular team is trying to divide navigations into multiple tasks.
is there some issue opening on angular GitHub ? where did u get this info ?
Well done! Great speakers. Keep on going. 💪 See you next year. Thank you. 🙏
Thank you.
Do you have telegram/slack channel or group? Or twitter only?
There is the #angular-belgrade channel on the Angular Discord server. Here is the invitation link: discord.gg/cdCTXM3G
Could you repeat this presentation in english. Could be interesting for whole Angular Community!
Super happy for angular v14 🚀
Angularfire sucks, no support, no documentation, new firebase features have been implemented for over a year, no issues have been handled. I no longer use angular precisely because of the sloppy angularfire.
I do not speak your language - but I understand english!
Got slides?
Thank you all for attending. Thanks for having me! 🙏 Please find the content of my talk ✨ code: github.com/profanis/angular-hoc-lazy/tree/main (make sure to check the branches) ✨ slides: slides.com/profanis/deck
SUPER useful video - thanks a ton!!
Одличне презентације, јако ми се допада декларативни приступ рутирању.
Why is the video quality so bad?
Отличная штука! Спасибо!