Let’s first see what might be the reasons for wanting to include a Typescript Component decorator.In case you want to create a FE application developed in Typescript, often one of the main reasons is the fact that you come from applications in Angular, one of the most used frameworks when […]
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.
Nuxt typescript translate system
Often a multi-language application can be needed to be able to speak to a wider audience of people and we can use Nuxt translate system for it. It can always be useful to localize your application according to who you want to talk to, while still being able to read […]
Modal with generic content in Angular app
Today we will see a way to add a modal with generic content in Angular, for web sites with many lists of resources, often even very complex.We can handle it like another “page” in router, allowing every content we need in it. This approach can be useful in cases where, […]
ES6 Javascript Arrow functions
Arrow functions are a new ES6 Javascript feature to write more readable and shorter code, with the same results. It came with another new feature like the “let/const” renaming from the ES5 “var”. It may seem very similar to the anonymous functions of ES5 but with some small differences. A […]
Angular Adapter pattern
Let’s see an Angular version of the Adapter pattern.Mapping allow us to decrease coupling between what arrives from a remote BE on our FE. We can take advantage of one of the Gang of Four’s design patterns (the Adapter pattern) to transform the external response in what we want. Adapter […]