You May Also Enjoy
Configuring the Starship Prompt for Bash
2 minute read
Starship is a minimal, fast, and highly customizable shell prompt written in Rust. It works the same way across Bash, Zsh, Fish, PowerShell, and more, so you...
What is a side effect in JavaScript?
less than 1 minute read
A side effect is any application state change that is observable outside the called function other than its return value. For example modifying any external...
What is a Monorepo?
less than 1 minute read
Monorepo, is a single repository which contains more than one logical project like a web application and its iOS application.
Dependency Injection in JavaScript
less than 1 minute read
Dependency Injection is a pattern where instead of creating or requiring dependencies directly inside a module, we pass them as paramaeters or reference.