Browsing Tag
javascript
1631 posts
How to get started with Progressive Web Apps.
Progressive Web Apps (PWA) What is a Progressive Web App (PWA)? PWA is a progressive web app and it combines…
How to Upgrade to Prisma v7?
Prisma v7 brings real improvements — better performance, cleaner architecture with adapters, and more predictable behavior in ESM…
How Do I Return the Response from an Asynchronous Call?
Async calls (e.g., fetch()) return Promises, not immediate values. Direct return yields undefined. Focus: JavaScript (adapt for other…
loadmodal.js: Bootstrap 5 Modal Window with Fetch API
Need to load Bootstrap modals with content from your server without writing repetitive HTML? loadmodal.js handles the entire…
Building an impossible Tic-Tac-Toe with Minimax and LemonadeJS
This component was built as a small experiment in combining a complete game-tree search with a reactive user…
The Day I Learned What Actually Slows Down React Apps
Every React developer thinks performance issues come from the backend—until they learn the truth. I learned mine in…
Why you should stop writing long functions
Hey friends! 👋 Let’s talk about something every beginner struggles with: Why you should stop writing long functions…
How to Choose the Best SDK for Your Custom eBook Platform
Global digitization is bringing changes to every aspect of our lives, including the way we read. Now, more…
GenAI for Engineers, What’s Real, What’s Not and What’s Coming
Original: https://codingcat.dev/podcast/genai-for-engineers-what-s-real-what-s-not-and-what-s-coming By the end of this post, you’ll understand: The new engineering landscape GenAI has created Practical…
Closures Explained in minutes (🎒 Backpack Analogy)
Ever wondered why some functions “remember” things even after they should’ve been forgotten? Like: “How does this function…