Cañete,Brandon L.git-fundamentals-documentation.hashnode.dev·Oct 3, 2024Documentation of my Angular App to firebaseThis is the step by step on how i deploy my angular app to firebase Prerequisite Ready Angular App Node Js Google Account Step 1 : Go to Firebase official website Do this so that you can login or sign up your acccount in firebase Step 2: Run ...34 readsFirebase
Cañete,Brandon L.git-fundamentals-documentation.hashnode.dev·Oct 2, 2024Angular ComponentsThis step by step guide on how i made my 50 angular components Prerequisite Angular CLI Install with npm libraries and make an angular app cmd or git bash or any terminal you can use to commit the project Github Repository Step 1 : Open the Ang...Angular
Walter Mark B. Inductivo Jr.walterific.hashnode.dev·Sep 18, 2024Angular ComponentsIn this activity, I created 40 components using HTML and TYPESCRIPT and 10 components of basic programming fundamentals that beginners should know. These components, with different functions, will help you understand the logic of the systems. I have ...11 likes·41 readsAngular components
Thirdy Gayaressoftware-engineer.thirdygayares.com·Sep 8, 2024Angular Create Components, Modules, and RoutesComponents Components are building blocks in Angular applications. Each component contains the HTML, CSS, and logic for a part of the user interface. You can think of them like small, reusable parts of a webpage. Module A module is a container for a ...4 likes·339 readsAngularangular fundamentals
Thirdy Gayaressoftware-engineer.thirdygayares.com·Jun 3, 2024Understanding Angular: Components, Routing, and Directives ExplainedComponents Components are the building blocks of Angular apps. Each component has: Template: The HTML part of the component. Class: Contains the logic (written in TypeScript). Styles: Defines the look of the component @Injectable({ providedIn...AngularAngular
brian treesebriantreese.hashnode.dev·Feb 23, 2024Angular Animations Tutorial: The Keyframes FunctionAs you probably already know, when you build apps today, you’ll likely need to use animations and transitions to enhance the UI where possible. With Angular’s animation framework we have access to some pretty powerful features which allow us to do th...angular keyframes
brian treesebriantreese.hashnode.dev·Feb 16, 2024Angular Animations Tutorial: Enter & LeaveWhen building things with Angular have you ever found yourself with the need to animate mark-up as it physically enters and leaves the DOM? This isn’t possible right? Actually, it is. In Angular we have access to a powerful animation framework. It’s ...angular enter and leave
brian treesebriantreese.hashnode.dev·Feb 9, 2024Angular Animations Tutorial: Learn the BasicsWhen you build stuff in Angular, you probably pretty quickly discover that you want to add animations and transitions. They are an important aspect to any application now-a-days right? They help make the overall user experience feel nicer and can hel...angular transitions
Navnit Rajnavnitraj.hashnode.dev·Jan 14, 2024Angular Component and Its callIn Angular, components can be invoked or called in multiple ways within a template using different methods, such as using class, attribute, or tag selectors. Here's how you can utilize these approaches: Tag Selector: The most common way to call a c...Angular
brian treesebriantreese.hashnode.dev·Dec 29, 2023How to Use Angular @Input to Pass Data to Dynamically Created ComponentsIf you’re using dynamically created components in Angular, you’ve probably found it difficult to pass information between the parent and child components when needed. You need to provide the info in the parent and then inject it within the child comp...dynamically created components