Ajinkya Palaskarajinkyap.hashnode.dev·Jan 9, 2024Uploading folders and files to Shared Drives using Next.js API route handlersRecently I had a requirement in my project to programmatically create folders inside Shared Drives and upload files to those folders. I could not find any proper resource on how to do this. So I am writing this blog to help others who might come acro...1 like·978 readsNext.js
Laxmanrao Ballalaxmanballa.hashnode.dev·Dec 8, 2023How to add progress bar on the top of the page while routing between pages in Nextjs.There are several ways to add a prograss bar for routing in Nextjs13, each with its own advantages and disadvantages. Here we are talking about one of the best approch which is very easy to use. That is next13-prograssbar This is a dedicated package...next13-progressbar
Mahad Ahmedtechwithmahad.hashnode.dev·Sep 27, 2023Setting up Next.JS and PocketBase for AuthenticationIf you are here, you most likely had a problem setting up PocketBase and Next.js 13 for authentication. Don't worry, I got you. You don't have to suffer the same pain I went through. If you prefer to watch instead of read, click here to watch this on...1 like·1.8K readsNext.js
DOWON LEE2dowon.hashnode.dev·Jul 23, 2023[Next13] Data Fetching이전 글에서 얘기했듯이, Next13에서 데이터를 가져오는 Component는 Server Component로 구현하는 것을 추천한다. 물론 반드시 그래야 하는 것은 아니고, Client Component에서 데이터를 가져오고 싶다면 Next12에서 했던 것처럼 SWR이나 React Query와 같은 라이브러리를 이용하면 된다. 하지만 Next13에서 데이터를 가져올 때 사용하는 fetch 함수를 이용하면 자동으로 요청의 중복을 제거해주고, 캐...41 readsNext13 적용하기Next.js