In this article I am going to take a look on how to handle error on Module federation v2 using angular and nx. 🚀
Posts
Handle Angular module error with Rspack module federation and Nx
Lark Suite API in Action with Hono and Cloudlfare worker: Basic Guide
Lark Suite is a application developed by ByteDance as 1 stop solution for all business need. Lark Suite do provide a very generous free tier with many feature that can compete with the like of Google Workspace, Microsoft 365 or Zoho. Lark Suite also provide a comprehensive API that can be used to integrated with any site. In this guide, we will take a look on how to set up Lark API and integrate it with Sveltekit. 🚀
Setting up D1 Database with Drizzle in a Hono Cloudflare Worker App
This guide covers configuring a D1 database using Drizzle in a Hono app deployed using Cloudflare Workers.. 🚀

Using Nx with SvelteKit: My Guide
usually NX used by framework like Angular or React. However not much article about svelte and NX 🚀

Using Cloudflare KV with SvelteKit: A Complete Guide
This guide will walk you through integrating Cloudflare KV with your SvelteKit application, from initial setup to advanced usage patterns. 🚀

Deploy Sveltekit to cloudflare
SvelteKit is a powerful framework for building web applications, and Cloudflare Pages provides an excellent platform for hosting them. This guide will walk you through the process of deploying your SvelteKit application to Cloudflare Pages, ensuring optimal performance and reliability. 🚀

Using Github api to list down Github pull request that contained sensitive data
If you’ve accidentally committed sensitive data (like passwords or SSH keys) to a Git repository, you can remove it from the git history1. However, if your repository is hosted on GitHub, the data won’t be removed from the associated pull requests2. To streamline this process, an automated TypeScript script is proposed. It identifies sensitive data in pull requests, retrieves repository data using the GitHub API, and generates an output.csv file with relevant information. This script simplifies maintaining clean repositories. 🚀

Use Sveltekit with Wails app
In this article, we explore integrating SvelteKit with a Wails app. We will create a Wails project named ‘todo-app’ and update the Wails app by modifying the ‘wails.json’ file to include frontend-related commands. Revamp the frontend by setting up SvelteKit. Enjoy your new Wails App powered by SvelteKit! 🚀

Managing Multiple Git SSH Keys for GitHub on Windows
If you're an avid GitHub user and have multiple GitHub accounts, you might have encountered challenges when working with repositories from different accounts on the same machine. By default, Git uses a single SSH key for authentication, but fortunately, there's a solution! In this tutorial, we'll walk you through the process of setting up and managing multiple Git SSH keys on a Windows machine for different GitHub accounts.

Load testing single page application using jmeter is not straightforward
Load testing SPAs with JMeter can be challenging due to their asynchronous nature. SPAs use JavaScript to render HTML pages and send requests via the XMLHttpRequest object1. However, JMeter sends HTTP requests sequentially, affecting response times. For example, if a SPA button triggers three concurrent XMLHttpRequests, JMeter processes them sequentially, leading to inaccurate response times. Solutions include custom JSR223 Sampler, Custom AJAX Request Sampler, and WebDriver Sampler, but each has limitations. Performance test engineers must understand the application’s architecture for realistic load testing in JMeter