MDG developermdgdev.xyz·11 hours agoNova - Primeros pasosQueda poco para que termine 2024 y no he querido dejar pasar la oportunidad de embarcarme en un nuevo proyecto. Hasta hoy, todas las iniciativas en las que me he involucrado han tenido finales abruptos, generalmente porque no he tenido la oportunidad...Web Development
Atharv Dalalwhy-i-ditched-express-for-nestjs.hashnode.dev·Dec 18, 2024Why I Ditched Express for NestJS: A Game-Changing DecisionHey there, fellow developers! Let me tell you about a transformation in my backend development journey that completely changed my perspective on building Node.js applications. After years of working with Express, I took the leap to NestJS, and honest...nestjs
Sagyam Thapablog.sagyamthapa.com.np·Nov 26, 2024Distributed Tracing with OpenTelemetry and Jaeger for Nest ApplicationIntroduction Have you ever had a bug that occurred in production and you have no idea what went wrong because your logs won’t tell you exactly what went wrong or a request that takes usually long to process. Sometimes debugging these issues without a...257 readsOpenTelemetry
Hamidreza Mahdavipanahhamidreza.tech·Nov 26, 2024Fast and Simple NestJS App Deployment on VercelThis guide is beneficial if you're using Express adapter. For NestJS applications utilizing the Fastify adapter, these links may be helpful: https://fastify.dev/docs/latest/Guides/Serverless/#vercel https://github.com/vercel/examples/tree/main/star...39 readsnestjs
Shaunak Deshpandeshaunak.hashnode.dev·Nov 25, 2024Real-Time Communication with Server-Sent Events (SSE) in NestJSAs developers, we're constantly seeking ways to create more dynamic and engaging user experiences. One approach to achieving this is by leveraging real-time communication between the client and server. While WebSockets are a popular choice, Server-Se...1 likeJavaScript
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
Muhammad Sufiyaninnosufiyan.hashnode.dev·Nov 25, 2024Episode 7:Understanding Hoisting in Yarn WorkspacesWhat Is Hoisting? Hoisting in Yarn Workspaces refers to the process of lifting dependencies from individual package directories to a shared node_modules folder at the root of the repository. This mechanism optimizes: Dependency Management: Avoids d...SMIT - Batch 10nestjs
Muhammad Sufiyaninnosufiyan.hashnode.dev·Nov 25, 2024Episode 6: Using Yarn Workspaces to Manage MonoreposWhat Are Workspaces? Workspaces are a powerful way to manage multiple packages within a single repository. They allow packages to: Interact as Dependencies: Automatically link packages together as dependencies via symlinks. Streamline Installatio...SMIT - Batch 10nestjs
Muhammad Sufiyaninnosufiyan.hashnode.dev·Nov 25, 2024Episode 5: Using Symlinks to Manage Monorepo ModulesIn the previous lesson, we explored the Node Modules Trick, renaming the packages folder to node_modules to allow Node.js to treat modules as standalone packages. In this lesson, we’ll use symlinks (symbolic links) for a more elegant and professional...SMIT - Batch 10Nx