MDG developermdgdev.xyz·Dec 22, 2024Nova@1.0 - Despliegue de Backend IHe decidido, tras evaluar el proyecto y repartirlo en fases, que comenzaré con la instalación y desarrollo de un backend simple que me permita dar respuesta a lo más básico del proyecto. Para ello he comenzado instalando NestJS npm install -g @nestjs...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...81 readsJavaScript
Ritesh Benjwalblog.riteshbenjwal.in·Nov 21, 2024Building a Stock Simulator Platform: A Technical JourneyAs developers, creating platforms that blend gamification, and real-world practicality can be both challenging and rewarding. One such project I worked on was a Stock Simulator Platform. This platform was designed to help students and aspiring trader...nestjs
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
Rishi Bakshirishibakshi.hashnode.dev·Sep 22, 2024Handling Third-Party Components in Next.js: Avoiding Common MistakesWhen building with Next.js, dealing with third-party components can sometimes cause issues, especially if they aren't correctly configured for client-side rendering. A common mistake developers make is incorrectly using third-party components that re...11 likesYou Don't Know Next.jsthird-party-components
Anupam Shakyablog.anupamshakya.in·Sep 9, 202410 Performance Optimization Techniques for Next.js ApplicationsNext.js, a popular React framework, is known for its server-side rendering capabilities, built-in optimization features, and flexibility for creating high-performance web applications. However, building a performant Next.js application still requires...next js
JS Pantherjs-solution.hashnode.dev·Aug 22, 2024Next JS vs React : Which Framework to choose in 2024?The battle of the best frontend technologies between Next JS and React is baffling the IT world. While React is a JavaScript library, NextJS is a full stack frontend framework. Before we discuss the Next JS vs React comparison, let’s straighten out t...#nextjsdeveloper
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
Sujal Sonisujalsoni.hashnode.dev·May 13, 2024Full Stack Web Application using Next JSHere's the 6th blog in this ongoing series, continuing our journey of building a Full Stack Web Application using Next JS. Till now, I have uncovered the secrets of implementing backend with Next JS and performing User Authentication & performing CUR...image upload firebase
ajit guptanextjss.hashnode.dev·May 9, 2024Unexpected Token Error: Handling 404 Response in NextJS Applicationconst page = async() => { const session = await getServerSession(authOptions) if(!session){ redirect("/") } const response = await checkPdf() return ( <div> <ChatComponent name={session.user.name} heading={response===true?true:false}/> </div> ...next js