Angular & WebAssembly
What is Web Assembly? WebAssembly (Wasm) is a new way to run code on the web.It is a binary instruction…
Design – Plan – Write
What is Web Assembly? WebAssembly (Wasm) is a new way to run code on the web.It is a binary instruction…
An angular application mainly consists of HTML templates, their components which include various TypeScript files. Whenever we run over an…
The above gif is the challenge we are going to conquer. Main tasks are: Have two squares, one reflecting primary…
Usually we use @Output() and EventEmitter (from Angular/core) to emit an event to parent component. @Output() addTab = new EventEmitter<any>(); ...…
I used to work with icon-fonts, much time. Lots of projects ( Site or applications) really need a system for…
debounceTime delays the values emitted by a source for the given due time. If within this time a new value arrives,…
Let´s say we want to use ipcMain / ipcRenderer on our project to communicate from Angular to Electron and back. The Electron side look…
Let´s use the most recent version of Angular (currently version 12) to build a Progressive Web Application (PWA) that works…
Let´s say we have this warning “Port 4200 is already in use” when running the ng serve command“. And all…
There are different ways to solve that, depending of the situation or what we want to achieve. Solution A :…