AKAkshay Kamathinakshaykamath.hashnode.dev·Apr 9, 2025 · 3 min readHow to Build a Project: Microservices vs MonolithWhen starting a new software project, one of the key architectural decisions is whether to go with a monolithic architecture or break things down into microservices. Each approach has its pros and cons, and the right choice depends on factors like te...00
AKAkshay Kamathinakshaykamath.hashnode.dev·Mar 8, 2023 · 3 min readmap(),filter() and reduce()These are a few of the most important utility functions, important to note this : They take a function as an argument. They do not mutate or change the original arguments passed inside the function, they return a new copy,which is always a good pra...00
AKAkshay Kamathinakshaykamath.hashnode.dev·Dec 6, 2022 · 1 min readIntroduction To HTML!What is HTML HTML is the standard markup language for creating Web pages.HTML stands for Hyper Text Markup Language.An HTML element is defined by a start tag, some content, and an end tag Web Browsers: The purpose of a web browser (Chrome, Edge, Fire...00
AKAkshay Kamathinakshaykamath.hashnode.dev·Dec 1, 2022 · 2 min readDifference between NPM and NPX ModuleNPM The NPM stands for Node Package Manager. NPM is a Package Installation Tool, Used to install, delete, and update Javascript packages on your machine. NPM installs packages globally, which means that your machine may be polluted by packages that ...00