Strngestrngeblogs.hashnode.dev·Dec 18, 2024Getting Started with Next.js: A Beginner's GuideNext.js has emerged as one of the most popular frameworks for building modern web applications. Its features like server-side rendering, static site generation, and built-in API routes make it a go-to choice for developers. Whether you’re new to web ...Next.js
Pratham Saxenaprathamsaxena.hashnode.dev·Dec 10, 2024What is Hydration in Next JS?When a page is rendered by the browser, it first processes the HTML to display the content on the screen. Then, it executes the JavaScript (logic part) to make the page fully interactive, enhancing the performance of your web app. This process of ren...Next.js
Ben Abderrahmen Mohamed Aminem-amine-bar.hashnode.dev·Dec 8, 2024Exploring Next.js Server ActionsNext.js has always been a strong framework for building full-stack apps, and with the introduction of server actions in version 13.4, it has become even more powerful.So, what are server actions?Server actions are asynchronous functions executed on t...80 readsJavaScript
Surgicalthecodeoperation.com·Nov 22, 2024Reviewing Astro: The Framework for Lightning-Fast Static Websites with JavaScript FlexibilityIn the ever-evolving world of web development, finding the right framework for building high-performance websites can be daunting. Enter Astro—a rising star in the realm of static site generators. Today, I’ll walk you through my personal journey of u...Astro
syncfusionsyncfusion-blogs.hashnode.dev·Nov 19, 2024React vs. Next.js: Choosing the Right FrameworkTL;DR: This blog post compares and contrasts the popular JavaScript frameworks React and Next.js. React works well for SPAs and interactive UIs, while Next.js is good for SEO-driven websites and high-performance apps. JavaScript is the language of th...Front-end Development
Luke StahlforBuilder.iobuilderio.hashnode.dev·Nov 12, 2024A Guide to Server-Side RenderingServer-side rendering (SSR) has been around for a while, but it's worth exploring further. This technique can make your web apps faster and more SEO-friendly. In this guide, we'll explain SSR, why you might want to use it, and how to implement it wit...Server side rendering
Abishek Kafledevops.abisec.xyz·Oct 17, 2024SSTI CTF Challenge 1Lab Setup Create a folder for the challenge. mkdir ssti_ctf1_challenge cd ssti_ctf1_challenge Set up the environment python3 -m venv venv source venv/bin/activate pip install Flask Create app.py from flask import Flask, request, render_te...Code ReviewServer side rendering
Bhupendrabhuppi.hashnode.dev·Oct 17, 2024Client-side rendering (CSR) and Server-side rendering (SSR)Client-side rendering (CSR) and Server-side rendering (SSR) are two approaches used to display content on web pages, and they differ in how and where the rendering of HTML content occurs. 1. Client-Side Rendering (CSR) In client-side rendering, the ...Client-side rendering
Yusuf Uysalyusufuysal.hashnode.dev·Oct 15, 2024React Interview Questions (Part 9): Server-Side Rendering (SSR) and Static Site Generation (SSG)1. What is server-side rendering (SSR), and how does it differ from client-side rendering (CSR)? Server-side rendering (SSR) generates HTML on the server for each request, improving initial load times and SEO. In contrast, client-side rendering (CSR)...React Interview QuestionsReact
Aditya Roshanroshanaditya.hashnode.dev·Oct 10, 2024What I know from client side rendering to reactToday NextJS is popular framework for developing full stack web app. First of all I don’t consider NextJS being a full stack framework but front-end react framework with back-end integrated. It’s like you have been given npm create-react-app with rea...10 likesServer side rendering