syncfusionsyncfusion-blogs.hashnode.dev·Nov 21, 2024Secure JWT Storage: Best PracticesTL;DR: JSON Web Tokens are widely used for secure data transmission in single-page applications, but they are susceptible to security risks such as cross-site scripting and cross-site request forgery. Secure methods for storing JWTs include using Htt...DiscusswebToken
Yoojin Kothisisyoojin.hashnode.dev·Nov 14, 2024InstallationBuilding SPA with Django and HTMX, tailwind What I will do: Install packages for the project Create a Django project app and set up templates and static at the project level Create an app tracker with Tailwind Set up basic templates for Htmx In...Discuss·31 readsSPA for Python developers#django-tailwind
Parmeet Singhpxrmeet97.hashnode.dev·Oct 7, 2024Long Live Unmount!Recently, I encountered an app that was behaving very poorly, being slow and unresponsive, which it shouldn't have been. I discovered a flaw in a component that was using many timed animations. This prompted me to write this post before fixing the is...DiscussReact
Nile Bitsnilebits.hashnode.dev·Sep 22, 2024Deploying Your First React App to ProductionPutting your first React application live might be intimidating, particularly if you've never done it before. That being said, any developer creating contemporary web apps has to have this ability. With thorough instructions and a ton of code samples...DiscussJavaScript
Howardblog.howardphung.com·Sep 11, 2024Single Page Application PatternsHi folks, welcome back to Web Dev Distilled. In this article, let’s have a high-level overview of Single Page Application Patterns. There’re so many patterns out there, in this article, I will cover a few very popular ones that you might face when bu...DiscussJavaScript Distilled JavaScript
M Muzzammil ijazmuxammil.hashnode.dev·Aug 3, 2024Effective Code Sharing in React Native with Monorepo ArchitectureManaging Multiple React, React Native or Node.js based Projects with Nx Workspaces Have you ever wondered if there's a better way to manage your React Native projects that are built for both web and native platforms? Have you struggled with managing ...Discuss·3 likesmonorepo
Vivekheyvivek.com·Jul 25, 2024Why Web Development is Taking a U-Turn: From SPA Architecture to Server-Rendered ArchitectureWhy Web Development is Taking a U-Turn: From SPA Architecture to Server-Rendered Architecture 🚀 In recent years, the web development landscape has seen a significant shift. Single Page Applications (SPAs), which have dominated the field for the past...Discuss·10 likesspa
Nikhil Akkinikhilakki.in·Jul 6, 2024Battle of the Auths: Session Cookies vs. JWTsChoosing between session cookies and JWT (JSON Web Tokens) for authentication in a web SPA (Single Page Application) depends on several factors, including security, ease of implementation, scalability, and specific use case requirements. Here's a com...DiscussSession-cookies
Varenya Thyagarajvarenya.hashnode.dev·May 29, 2024CRUD vs. Component SPA Frameworks: A New Mental Model for Application DevelopmentIntroduction For those experienced in application development, MVC frameworks like Rails, Django, and Laravel are well-known. I'll refer to these as CRUD frameworks for this article. They remain the go-to frameworks for many developers. We are now se...Discuss·184 readsSingle Page Application
Akanksha Saxenaexceptionhandled.hashnode.dev·May 27, 2024Angular : Event loop for Lifecycle hookIn this article, we are going to understand how the javascript event loop is related to Angular change detection which is internally related to Angular's lifecycle hooks. First, let's understand how angular change detection is related to its lifecycl...DiscussEvent Loop