Ritesh BenjwalforBuild & Beyondriteshbenjwal.hashnode.dev·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...Discussnestjs
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 ...DiscussNext.js
Rishi BakshiforRishi Bakshi Blogrishibakshi.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...Discuss·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...Discussnext 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...Discuss#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...DiscussJavaScript
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...Discussimage 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> ...Discussnext js
Ashfaq Hussaindevlogs.hashnode.dev·Apr 20, 2024Structuring NextJS projectsComing from a React.js world, learning Next.js is fun. There are many features in Next.js, but today we will discuss file-based routing in Next.js. I really like file-based routing. There is no need to add any extra packages and configure it. Just cr...Discuss·2 likes·70 readsNext.js
Nicolas Guillennicolascalev.hashnode.dev·Mar 21, 2024Update 1. Typescript backend first stepsIntroduction To get started with my backend challenge, I wanted to use TypeScript because that's the language that I am the most familiar with, of the languages that I picked to complete this challenge. I have worked with Node multiple times in the p...Discuss·38 readsbackend