Vishalvishalchhadekar.hashnode.dev·Feb 6, 2025Understanding Client-Side and Server-Side Rendering in Next.js App DirectoryNext.js has evolved significantly over time, and one of the major changes is the introduction of the App Directory (app/). This new directory structure brings powerful features such as Server-Side Rendering (SSR) and Client-Side Rendering (CSR), alon...Next.js
TechKareertechkareer.hashnode.dev·Feb 1, 2025Future of Backend Development: Exploring Next.js with Insights from Ishar JainEver felt like the lines between front-end and back-end are blurring? Well, Ishar Jain, an undergraduate from MAIT, Delhi and a front-end developer at FourCore, as well as a teaching assistant at Cuvette, certainly thinks so. In a recent tech talk, I...Next.js
Anish sharmalearneasyway.hashnode.dev·Jan 7, 2025Sign-up Form In NextJsimport connect from "@/config/config"; import User from "@/models/user"; import { NextResponse } from "next/server"; import bcryptjs from "bcryptjs"; connect(); export async function POST(request) { try { // Parse request body c...sign up page nextjs
Shivam barthwalshivamcoder.hashnode.dev·Jan 2, 2025Dive into Next.js!Next.js is a powerful React framework that enhances the developer experience by offering features like file-based routing, server-side rendering, and API routes out of the box. In this post, we’ll cover the core concepts of Next.js to help you build ...Frontend Unlocked: From Basics to BrillianceNext.js
ANNU KUMARImyfirstblog123.hashnode.dev·Dec 4, 2024What is the difference between the traditional pages directory and the src/app directory in Next.js?Hey folks! What’s up? Hope everything is good. Today, I’ll discuss the differences between the traditional pages directory and the src/app directory in Next.js. in my previous article, I explained how Next.js projects are different from React.js proj...4 likesNext.js
Turing Vangisms.hashnode.dev·Oct 5, 2024Udemy nextjsPros and Cons of Studying from Videos: A Focus on Udemy Next.js Courses Learning from videos has become a popular method for many people looking to master new skills or expand their knowledge. For developers interested in Next.js, platforms like Udem...Next.js
Rohan Shrivastavarohanblogs.hashnode.dev·Sep 30, 2024Deploying a Next.js Project on Vercel: My ExperienceRecently, I deployed my Next.js project on Vercel, and it was surprisingly easy. If you're new to deploying Next.js apps, here's how I did it: 1. Create a Next.js Project First, I created my Next.js project using the command: npx create-next-app@late...Next.js
ayoola lekanoluremi.hashnode.dev·Aug 31, 2024Redux in Next.js: A Comprehensive GuideNext.js has rapidly gained popularity as a framework for building efficient and scalable web applications. As a React-based framework, it seamlessly integrates with many React tools, including Redux. However, integrating Redux into Next.js requires a...37 readsredux-nexts
Lior Amsalemlior-amsalem.hashnode.dev·Aug 2, 2024Nextjs 13 Tutorial, Todo App (2024)In here we want to practice actual code writing skills, This is a Nextjs 13 Tutorial, do so with the very versatile popular tech stack of nextjs (v13, app folder approach) and Mongodb with mongoose in the back and React to handle the view and renderi...Next.js
Ramu Narasingaramunarasinga.hashnode.dev·Jul 18, 2024shadcn-ui/ui codebase analysis: How does shadcn-ui CLI work? — Part 3.0I wanted to find out how shadcn-ui CLI works. In this article, I discuss the code used to build the shadcn-ui/ui CLI. In part 2.0 to 2.15, I discussed how npx shadcn-ui init works under the hood. We will look at how npx shadcn-ui add <component> work...JavaScript