
Type transformations in TypeScript: Removing functions from a type
TypeScript is often quoted as one of the most loved programming languages (StackOverflow, 2022). I guess, what contributes to it...

Unit testing in Svelte
We are going to set up unit testing in Svelte using Testing Library and Jest. The working version of the...

Developed a Rich-text Editor for Svelte (svelte-lexical)
Developed a rich-text editor for svelte called svelte-lexical. It is based on Lexical, an open source framework for creating rich-text...

CSS in Svelte
Svelte is a front-end framework for web development, you can find more about it here. This post is about using...

Svelte – a difficult kind of UI Framework
Svelte is a front-end framework for web development like React, Vue and Angular. In a short time, Svelte has become...

Create Masonry Layout with CSS (Grid with variable-sized contents arranged in columns)
Source code for examples in this article can be found at https://github.com/umaranis/css-masonry-layout In Masonry layout, variable-sized items are arranged in...
Add linting to NodeJs and TypeScript project
We are going to install TypeScript ESLint for finding potential problems with our code. Most online tutorials talk about using...

Setup Nodejs + Typescript development environment
Here is the summary: Install Nodejs Initialize Javascript project Convert to Typescript Install ts-node Prerequisite You would need a code...

Maximo Test Automation with Cypress
Cypress.io is a newish front-end test automation tool. In my brief encounter with Cypress, I found it relatively easy to...

How Public Key Cryptography works? (RSA algorithm)
Public-key Cryptography is asymmetric meaning the key used for encryption cannot be used for decryption. There is a pair of...