Angular Rocks artwork

Angular Rocks

26 episodes - English - Latest episode: over 1 year ago -

All things Angular podcast 🎙 by Aliaksei Kuncevič.

Technology Education web development web technology programming angular
Homepage Apple Podcasts Google Podcasts Overcast Castro Pocket Casts RSS feed

Episodes

RxJS with Ben Lesh

August 10, 2022 10:00 - 47 minutes - 44 MB

RxJS (Reactive Extensions for JavaScript) is a complex and very interesting topic. The Rx (Reactive Extensions), originating from Microsoft, has been around for a very long time migrating from one platform to another. These days every programming language has its own native implementation of Rx. This episode is fully dedicated to RxJS. In this episode we are discussing: What is RxJS and what problem does it solve? Ben’s personal story with RxJS and how it all started A quick his...

Reactive Angular

August 11, 2021 11:00 - 2 minutes - 2.1 MB

There is a lot of buzz around reactivity and reactive programming these days. All reactive Angular API is built on top of RxJS library so there is a lot of reactivity built-in within Angular. What do you think, should Angular have First-class RxJS support, should it be optional or may be Angular should support both options? Lets discuss   👉 Twitter thread Links The RxJS library Proposal: Input as Observable  Angular Getting Started Workshop ngstart.dev Aliaksei's mailing li...

Designing Reusable Components with Tomas Trajan

August 04, 2021 10:00 - 48 minutes - 44.9 MB

Component is the central piece in Angular. Sometimes you want to generalize a particular component, to make it shareable across your application or to move into a custom component library to share it around multiple applications. It is important to understand how to approach shareable components in your particular use-case. In this episode we are discussing: Components and Components composition Shared folder, Shared library, ngModules Template context Custom component librarie...

Web Components and Angular Elements

July 28, 2021 10:00 - 4 minutes - 3.83 MB

Web Components are also known as Custom Elements. Custom Element is a web standard for defining new HTML elements in a framework-agnostic way. There are a set of different techniques that allow you to build Web Components or Custom Elements. Being an Angular Developer you can easily get into Web Components by using Angular Elements. Links: Web Components Can I use Web Components Polymer Lit Polymer vs Lit Angular Elements Angular Self-Paced Workshops from Aliaksei ngsta...

Developer Tools with Minko Gechev

July 21, 2021 10:00 - 45 minutes - 41.5 MB

I split up the developer tools into multiple categories  Development and productivity Debugging Performance Testing In this episode we discuss each category in details as well as answering the following questions: Why do we need developer tools? Can you imagine a dev life without modern tooling? What are the modern Tools for Angular developers? How to debug a memory leak? Also we talk about some cool insights about what Angular Team is working on right now to improve the Angu...

Angular multi-project workspace

July 14, 2021 11:00 - 2 minutes - 2.45 MB

Every time you scaffold a new project with Angular CLI ng new command, the CLI, by default, produces an Angular CLI workspace for that project.  In some cases when you are working on multiple Angular projects under the same solution you may want to try out a Multi-project Workspace. This approach is also suitable for many enterprise projects. ng new my-solution --create-application false cd my-solution ng g application my-app ng g library my-shared-library Links Multi-project w...

Angular Change Detection with Wassim Chegham

July 07, 2021 10:00 - 39 minutes - 36.4 MB

Change Detection is a mechanism built into Angular that allows Angular to decide what actions to be performed when the state of the app changes. Most of the time developers do not have to deal with change detection manually. In this episode we are talking about a quick history of change detection and what problem it solves. We also discuss change detection strategies, when you should tap in to change detection manually and tips and tricks. People mentioned John Papa Misko Hever...

Keeping Angular Projects Up To Date

June 30, 2021 10:00 - 2 minutes - 2.17 MB

Angular is continuously evolving together with the entire web ecosystem. Therefore, it is a recommended best practice to keep up your Angular projects up to date with the latest Angular version. In this episode, you will learn why updating to a new Angular version is a good idea. Also, I will provide some tips that will help you to achieve that. Links: Angular versioning and releases Angular update guide Deprecated APIs and features ng update Angular,  Angular CLI, NodeJS compa...

Animations with William Juan

June 23, 2021 10:00 - 24 minutes - 22.5 MB

Animation is a great solution to improve the application experience. You can add animations to your web applications using CSS animations, browsers web animations API or by using third-party libraries. Juan talking bout different aspects of animations, how it works and how to get started. Links angular.io/guide/animations auth0.com/blog/get-better-angular-ux-using-animation-techniques indepth.dev/posts/1285/in-depth-guide-into-animations-in-angular williamjuan027.github.io/angula...

Responsive Design

June 16, 2021 10:00 - 3 minutes - 3.02 MB

These days, people use different devices to access the web. Therefore, every web application should be adapted to all screen sizes. Responsive Design is a technique that allows screens to adjust to different sizes accordingly. There are a few techniques to make your Angular Apps responsive. You can choose from several libraries specifically built for that purpose or just do plain CSS by writing CSS Media Queries. Lets discuss that  👉 Twitter thread Links Angular Flex Layout Ang...

Angular Material with Jeremy Elbourn

June 09, 2021 10:00 - 39 minutes - 36.4 MB

Angular Material is the most popular UI library available for Angular. It contains a set of high-quality components implementing Google Material Design specification, built by the Angular Team. Think of Angular Material as a foundation that you can use to build your own custom components. Jeremy touched on a quick history about Angular Material, its continuous evolution and what to expect in the future. Links material.angular.io guides More from Jeremy twitter

Angular CDK

June 02, 2021 10:00 - 2 minutes - 2.12 MB

CDK stands for Component Development Kit. CDK is something that not every Angular developer knows about. CDK contains a set of building blocks for creating your own UI components that could be great foundation for your custom components of any sort or a custom component library. Links Angular CDK

The History of Angular with Misko Hevery

May 26, 2021 11:25 - 37 minutes - 34.5 MB

Angular has been around for many years now.  There are a lot of decisions that were made within the Angular team that made Angular so successful today. AngularJS referring to v1 - the first version of the framework Angular referring to v2 and up, which is the new modern framework which is completely different to AngularJS This time Miško Hevery, the creator of Angular will tell about Angular history and share insights on his journey working at Google creating one the coolest front...

Component Communication Techniques

May 19, 2021 10:00 - 3 minutes - 2.98 MB

Component communication is the most common challenge developers face building single page applications. There are several techniques that you can use to approach components communication building Angular applications. In this episode I am discussing basic component communication techniques. Links Inputs and Outputs Async Pipe Reactive Services Technique Rx-service

Angular Router with Justin Schwartzenberger

May 12, 2021 10:00 - 49 minutes - 45.2 MB

Angular router solves a lot of problems in client facing single-page web applications. The router helps to control the page content by dynamically displaying the components without a need to request pages from the server.  Without an Angular router the user navigation experience in Angular application would be hard to achieve. Links Angular Router Revisiting a Reactive Router with Ivy People mentioned Mike Ryan Brandon Roberts Victor Savkin Michael Karén More from Justin Twit...

Application Folder Structure

May 05, 2021 10:00 - 3 minutes - 3.17 MB

Have you ever asked yourself the following question, what is the best way to structure an Angular application? In this episode you will find out why you should care about the folder structure and what are the benefits of the proper folder structure. Links Feature modules

Error Handling with Michael Karén

April 28, 2021 10:00 - 27 minutes - 24.8 MB

Error handling is a fundamental part of any real-world web application. In this episode, you will find everything you need to know about error handling in Angular and more. Fun fact: That is literally the first ever episode of Angular Rocks, recorded on 21 Jan 2021 Links Error Handler Class Angular Errors List Angular Debugging Guides Best practices for Error handling in Angular People mentioned David Herges More from Michael Twitter Blog Aliaksei's mailing list kuncevic.dev...

Interacting with Backend API

April 21, 2021 10:00 - 3 minutes - 2.79 MB

Every real-world web application has to communicate with backend API. Developers building web applications with Angular usually interact with the backend API using HttpClient. In this episode I am explaining the basic HttpClient features and HTTP methods. Links Angular HttpClient HTTP Methods Top 10 ways to use Interceptors in Angular

Dependency Injection with Dmytro Mezhenskyi

April 14, 2021 22:00 - 26 minutes - 24.7 MB

Dependency Injection is a design pattern that creates objects and provides them to consumer classes that depend on those objects. Dependency Injection is widely used in Angular. In this episode you will find everything you need to know about Dependency Injection and how it works in Angular Links Dependency Injection Dependency Injection YouTube Series by Dmytro Mezhenskyi More from Dmytro Twitter YouTube Blog Aliaksei's mailing list kuncevic.dev

Angular Lifecycle Hooks

April 07, 2021 10:20 - 3 minutes - 2.92 MB

Lifecycle hooks allow you to tap into the Angular lifecycle events to get more control. In this episode I am explaining the nature of lifecycle hooks in Angular and walking through the essential lifecycle hooks like ngOnInit and ngOnDestroy.  Links Angular Lifecycle Hooks

Angualar Lifecycle Hooks

April 07, 2021 10:20 - 3 minutes - 2.92 MB

In this episode you will learn Angular lifecycle hooks 🪝

Angular CLI with Alan Agius

April 01, 2021 11:00 - 25 minutes - 23 MB

Angular CLI is the most important piece of Angular ecosystem.  In this episode you will find everything you need to know about Angular CLI:  Brief history Top features Monorepos  Tips and tricks The future Links Alan Agius on Twitter Setup Multi Project Workspace Angular Package Format (APF) Spec  ng-packagr ng-packagr with David Herges on ngAir Optimizing Apps with Resource Inlining Bonus Angular CLI Cheat Sheet

Angular Template Syntax

March 24, 2021 09:00 - 3 minutes - 2.81 MB

Angular template syntax powered by Angular built-in directives helps to do a lot of things within a component template. In this episode I am talking about the main features of an Angular template syntax. If you want to learn more, have a look in to Angular Cheat Sheet and the Demo App I created specifically for this episode Links Cheat Sheet

Angular Building Blocks

March 17, 2021 09:00 - 7 minutes - 6.5 MB

There is a number of building blocks in Angular: Components Services Modules Pipes Directives In this episode I am walking through the essential Angular building blocks and concepts. Links Introduction to Angular Concepts

Things You Should Know About Angular

March 10, 2021 09:00 - 7 minutes - 6.46 MB

In this episode I am explaining what is Angular and answering the following questions: What does single-page client-side really means? Are there any differences between Angular and AngularJS? What are the benefits of using Angular?  Why developers and companies choosing Angular?  Links What Are The Benefits Of Using Angular Angular Docs Angular Roadmap Angular Versioning and Releases Angular Packages Angular Update Guide Keeping Angular Up-to-Date Angular on Gitter Angular Com...

Hello World

March 02, 2021 00:11 - 1 minute - 1.16 MB

Angular Rocks: who it's for and what it's about. Hosted by kuncevic.dev

Twitter Mentions

@kuncevic 3 Episodes
@decodedfrontend 1 Episode
@manekinekko 1 Episode
@benlesh 1 Episode
@williamjuan27 1 Episode
@jelbourn 1 Episode
@alanagius4 1 Episode
@mhevery 1 Episode
@mgechev 1 Episode
@schwarty 1 Episode
@tomastrajan 1 Episode
@melcor76 1 Episode