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...DiscussFront-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...DiscussServer 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...DiscussCode 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 ...DiscussClient-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)...DiscussReact Interview QuestionsReact
Aditya RoshanforDevs' HQroshanaditya.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鈥檛 consider NextJS being a full stack framework but front-end react framework with back-end integrated. It鈥檚 like you have been given npm create-react-app with rea...Discuss路10 likesServer side rendering
Rishi BakshiforRishi Bakshi Blogrishibakshi.hashnode.dev路Oct 9, 2024Think Server Actions Can Only Be Used in Server Components? Think againOne common misconception in Next.js development is thinking that server actions can only be utilized within server components. However, this isn't the case. Server actions can be used inside client components as well, which allows us to interact with...DiscussYou Don't Know Next.jsNext.js
Harsh Kumar Raicodebyharsh.hashnode.dev路Oct 2, 2024馃殌 Mastering Web Development & DevOps: Key Concepts and Lessons LearnedAs a web developer venturing into the world of DevOps, I鈥檝e spent the last few weeks learning and experimenting with a wide range of tools and techniques that form the backbone of modern web applications. In this blog, I鈥檒l share my key takeaways fro...DiscussWeb Development
Howardblog.howardphung.com路Oct 2, 2024Understanding React Server Components - P.1Hi folks, welcome back to NextJS Distilled. In the previous article, we already discussed CSR, SSR, and Hydration. If you鈥檙e new here, please check this out here. In this article, let鈥檚 dive into the world of NextJS and React Server Components. What ...Discuss路2 likes路30 readsNext.js DistilledNext.js
Emre Kanbaykanby.hashnode.dev路Sep 30, 2024Vanilla JS Server Side RenderingTL;DR (Too Long Didn't Read) Function const render = async (x, ...values) => { var rendered = ""; for (let u = 0; u < x.length; u++) { rendered = rendered.concat(x[u]); if (u < x.length - 1) { if (typeof values[u] == "function") { ...DiscussNode.js