Abdul Basit Khan (Abdul Basit)abdulbasitblog.hashnode.dev·Jan 24, 2025Understanding " this " in JavaScript Event Listeners: Arrow Functions vs Normal FunctionsWhen working with JavaScript, you may encounter situations where using this behaves unexpectedly, especially in event listeners. A common example is the difference between using an arrow function and a normal function inside an event listener. Let's ...TypeScript
Angular Academyblog.angularacademy.ca·Jan 16, 2025Angular Architecture Live Workshop in February 2025.Our popular Angular Architecture Workshop is back this February! This is an instructor-led LIVE online course! Learn how to design large-scale enterprise Angular applications 16 hours of intensive hands-on training (4 days: 8:00am to 12:00pm Easte...Angular
Prajwal Deshpandeprajwalsblog.hashnode.dev·Jan 16, 2025Why Your Next Project Should Embrace a MonoRepo StructureUnderstanding MonoRepos: A Simple Guide for Developers In the world of software development, managing multiple projects can be a daunting task. This is where MonoRepos comes into play. A MonoRepo, short for monolithic repository, is a single reposito...software architecture
Harshit Doshiharshitpdoshi.hashnode.dev·Jan 9, 2025[conductor log] : experiments in mono-repoNOTE: this article was originally written on 2025-01-10 at harshitpdoshi.online. My Experiment with Tamagui: The Promise and the Challenges As someone building applications for both web and mobile platforms, I’ve always been drawn to tools that simpl...conductor logconductor
Jonathan Gelingelinjo.hashnode.dev·Jan 9, 2025💡 10 Tips for Successful Nx Plugin ArchitectureNx provides many features, and I often see that Nx users don’t know or are afraid of extending Nx by implementing Nx Plugins. I’ve worked on many different Monorepos (large, small, distributed, etc.), and setting up an Nx plugin architecture has help...180 readsNxNx
Sanket Raksheunderstanding-monorepos-and-turborepo.hashnode.dev·Dec 30, 2024Understanding Monorepos and TurborepoIn the world of modern software development, efficient project management is key. One approach gaining significant popularity is the use of monorepos. In this article, we will explore what monorepos are, why they are beneficial, and how tools like Tu...monorepo
Ramu Narasingathinkthroo.hashnode.dev·Nov 27, 2024How CodeMirror v6 dev setup installs packages without a monorepoIn the article, we looked at:1. How CodeMirror v6 setup command processes CLI arguments?2. How CodeMirror v6 dev setup retrieves packages without a monorepo This leads to the next question how are packages installed as part development environment se...Open Source
Ramu Narasingathinkthroo.hashnode.dev·Nov 26, 2024How CodeMirror v6 dev setup retrieves packages without a monorepoIn the OSS community, it is quite common to come across monorepo projects where the workspaces and packages are all in a single repository. CodeMirror has a different style to the way packages are managed, each package that is used is a repository on...npm
Muhammad Sufiyaninnosufiyan.hashnode.dev·Nov 25, 2024Episode 9: Using Yarn Workspace Commands to Simplify Monorepo ManagementThe Problem with Changing Directories In a monorepo with multiple products and packages, you often: Jump between directories to run commands for different packages. Lose productivity managing these repetitive changes. Solution: Yarn Workspace Co...SMIT - Batch 10Nx
Muhammad Sufiyaninnosufiyan.hashnode.dev·Nov 25, 2024Episode 8: Understanding Bin Scripts and Their Use in Yarn WorkspacesWhat Are Bin Scripts? Bin scripts are executable files defined within a package that can be invoked: From other packages in the workspace. Globally when installed as a dependency. They’re commonly used for: CLIs (Command Line Interfaces), such a...SMIT - Batch 10nestjs