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
caner demircicanerdemirciblog.hashnode.dev·Dec 10, 2024How to Set Up NextAuth.js with NextJS 14, App Router, and Typescript1.) Puth these in .env.local file NEXTAUTH_URL="http://localhost:3000" NEXTAUTH_SECRET="DwyqlAMSV********JhaUxW+RtnFuOpdB9LU=". GOOGLE_ID="********" GOOGLE_SECRET="********" GITHUB_ID="*******" GITHUB_SECRET="*******" 2.) Create src/app/api/auth/[…...Next.js
Rohit Prakashrohitprakash249.hashnode.dev·Dec 1, 2024Update on : Learning next.jsOn November 23rd, I began my journey with Next.js and have since completed all the lectures in the Udemy course as of yesterday. However, a new update for Next.js was released, introducing changes like the updated way API requests are handled, which ...Next.js
Yashblog.yassh.in·Oct 31, 2024Authentication using NexAuth in NextJSAuthentication in NextJS has been made very simple by the next-auth library, in this post we will go through on how to setup authentication in your NextJS 14 application. We will not be using NextJS 15 because it is not stable yet. I will not go thro...30 readsNext.js
Gergo Starostablog.starigeri.hu·Oct 17, 2024[How To] Authentication with IdentityServer4 and NextAuth v4 (Next.js App Router)Introduction I recently worked on a project where I was responsible for the entire frontend, and authentication was handled through IdentityServer4. Initially, it was quite challenging because I had never integrated IdentityServer4 with the Next.js A...Next.js
Gaurav Vishwakarmablogs.gauravvishwakarma.com·Oct 14, 2024A Comprehensive Guide to NextAuth.js: Secure Authentication for Next.js ApplicationsIn modern web applications, authentication plays a crucial role in providing users with a personalized experience while ensuring their data's security. If you're using Next.js, one of the most powerful tools for handling authentication is NextAuth.js...nextauth.js
Turing Vangisms.hashnode.dev·Oct 8, 2024Nextjs FirebaseNext.js Firebase Integration: A Comprehensive Guide When building modern web applications, combining Next.js with Firebase can offer a powerful and efficient solution. In this article, we'll explore how Next.js Firebase integration works, the benefit...1 likeNext.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
Yahya Dahiryahyadahir.hashnode.dev·Sep 25, 2024Next.js for Scalable Web Apps: A Frontend Developer's JourneyAs a Frontend developer, I’ve been fortunate enough to work on various projects that use the power of Next.js. From cryptocurrency data and analytics to job board all which has benefited immensely from the power of Next.js. It has been my go-to tool ...26 readsNext.js
tkssharmaarticles.tkssharma.com·Sep 23, 2024Buddy Clone App using nextjs 14.xI'd be glad to provide a comprehensive guide on building a full-stack clone app using Next.js and Prisma: Prerequisites: Node.js and npm (or yarn) installed Basic understanding of React and Next.js Familiarity with Prisma ORM Getting Started: C...NEXTAUT