Let’s talk about what is an Angular wrapper component. Sometimes we need to include our pages in another component that wrap them with some other functionalities (maybe a right nav or other side panels). The simplest way I know to create a wrapper component is using a special angular directive […]
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.
Implementing full screen mode in Angular
Immersive experiences can be crucial for engaging users with your Angular application and full screen mode allows you to maximize the visibility of your content, providing a focused and distraction-free environment. This article delves into various approaches to implementing fullscreen functionality in your Angular application, complete with code examples and […]
Optimize imports with aliases in Angular
If there is one thing that creates clutter in an application, it is the very long imports of files into others in Angular components.The typescript provides a convenient way to convert relative paths to absolute paths, acting on the tsconfig.json file.This can be done by adding the paths of which […]
OTP form inputs
Today we will see the OTP form inputs.On some occasions it may be useful to have a particular “PIN” type field, divided into several single character fields. This make it easier for the user to type potentially random characters (and therefore difficult to line up and memorize). The ingredients in […]
Install Nuxt applications with Typescript
The Vue.js framework together with Nuxt is making its way among FE technologies for its compactness and ease of development. Today we’ll look at the basic recipe for building a Nuxt application with Typescript.Typescript is nothing more than Javascript’s big brother, which has more decisive ideas on data types and […]