It can often be useful to have a centralized point where to keep an eye on the events that occur on our site. Today we’ll create a simple logging system for Angular, to manage everything in one place. To start, we create the enum that takes care of ordering the […]
FE based
In the FE based category you will be able to find ways to build complex and easy interfaces, with a view to being user-friendly and dynamic. Mostly javascript will be used on which various frameworks are built such as vue, angular and the super set of javascript: typescript.
Welcome, intrepid developers, to your launchpad for mastering the mighty Angular framework! Whether you’re a seasoned JavaScript adventurer or a curious newcomer gazing at the vast cosmos of web development, this series of tutorials is your rocket fuel to propel you forward.
Angular, crafted by the brilliant minds at Google, is a TypeScript-based framework that empowers you to build dynamic applications with elegance and efficiency. From crafting interactive user interfaces to seamlessly managing data flows, Angular provides a robust structure and a treasure trove of tools to navigate the ever-evolving web landscape.
“Maybe you were looking for…” 404 page
Sometimes we see a useful tip when we search for a command or a page and we find a 404 “Not found” page or a “command not found” if we are from the command line.This behavior is given by an algorithm named: “Levenshtein distance algorithm”.This particular algorithm allows us to […]
Angular good code with some advices
Sometimes it can be convenient to stop and think about how to improve the existing one and write Angular good code, rather than go ahead without thinking.Below I have collected some small rules that I try to constantly follow and which I hope will be useful to you too. 1) […]
Angular client-side pagination vs server-side pagination
Data-rich applications present a challenge: displaying large datasets without overwhelming users. Pagination comes to the rescue, breaking down information into manageable chunks. Angular offers two primary approaches: client-side pagination and server-side pagination. This article delves into both methods, providing code examples and helping you choose the best fit for your […]
Javascript object to query string
It can often be useful to transform a javascript object into a query string dynamically, without necessarily knowing the properties of that object. Another good reason is to avoid concatenation for each individual parameter. This method can be used also in javascript/typescript frameworks like: Angular, React, Svelte, etc. This is […]