ankita-yadav.hashnode.devNext.js Performance Testing: A Practical Guide with k6When building server-side rendered (SSR) applications with Next.js, it's essential to ensure they can handle heavy traffic without compromising performance. Load testing helps identify performance bottlenecks and optimize server response times. Envir...May 10, 2025·2 min read
ankita-yadav.hashnode.devHow to Cherry Pick Changes in Git: A Simple GuideIn the world of software development, we often make numerous changes to our codebase and deploy these updates to production. However, sometimes we encounter issues in the production environment that require immediate fixes. This is where a handy Git ...Sep 4, 2024·2 min read
ankita-yadav.hashnode.devTop 10 Lodash Functions in my Everyday CodingEfficiency is crucial nowadays. We often face repetitive tasks and boilerplate code. Lodash, a JavaScript utility library, simplifies these tasks with a rich set of functions for arrays, objects, strings, and more.Some top lodash functions that I use...Jul 17, 2024·2 min read
ankita-yadav.hashnode.devConfigure HTTPS in Next.js development server: A Developer’s GuideEnsuring the security of your Next.js applications is crucial in today's web development environment. Running your application on HTTPS protects user data and overall trustworthiness. This guide was designed to help you set up HTTPS for your local Ne...Jul 14, 2024·3 min read
ankita-yadav.hashnode.devGenerating Sitemaps in next.jsSitemap is a file that provides information about your site routes, and site content to search engine crawlers and they will index your site content.The most common formats for sitemap files are XML and also it can be in RSS and text format too.It wi...Jun 8, 2024·2 min read