16 visitors
Using Google Analytics Data API in Next.js
June 5, 2025

A comprehensive guide to implementing Google Analytics Data API in a Next.js application, including server-side analytics data fetching and visitor count display.

Categories:
Next.jsGoogle AnalyticsData APITypeScript
Setting Up Google Tag Manager in a Next.js Application
June 5, 2025

A comprehensive guide to implementing Google Tag Manager in a Next.js application, including setup, configuration, and best practices for tracking user interactions.

Categories:
Next.jsGoogle AnalyticsTag ManagerTypeScript
How to Publish a React Component as an npm Package Using Vite
May 29, 2025

A step-by-step guide to publishing your own React component as a npm package, starting from a Vite app. Real-world example: @janardanpethani/genmoji.

Categories:
ReactViteLibrarynpm
Understanding __proto__ vs prototype in JavaScript
April 27, 2025

A deep dive into the difference between __proto__ and prototype in JavaScript, with simple and complex examples to understand prototype inheritance.

Categories:
JavaScriptOOPPrototypes
Building a Full-Stack Application with NX, NestJS, MySQL, React, and Docker
April 16, 2025

A comprehensive guide to creating a modern full-stack application using NX monorepo, NestJS backend, MySQL database, React frontend, and Docker containerization.

Categories:
NXNestJSMySQLReactDockerFull-Stack
Building My Portfolio with Modern Web Technologies
January 1, 2025

A detailed look at the modern web technologies and design decisions behind my portfolio website, including Next.js, React, TypeScript, and TailwindCSS for creating a responsive and performant web application.

Categories:
Next.jsReactTailwindCSSTypeScript
Using CSS View-Transition API
January 1, 2025

Enhance your page transitions using the new CSS view-transition API.

Categories:
CSSTransitionsWeb API
Solving Jest Testing Challenges with ES Modules
June 18, 2025

How to fix the 'SyntaxError: Cannot use import statement outside a module' error when testing ES module libraries with Jest.

Categories:
TestingJavaScriptReact