I have added a demo (link in description). Are there any good NextJs pagination packages that you know of? Share below (don't share links or you might get flagged by youtube as spam)
@tanmaypant84939 ай бұрын
THIS VIDEO WAS A LIFE SAVER!!!
@dogzrgood Жыл бұрын
Hey man! great video as always. If you take suggestions for future videos, then NextJs 14 + Tailwind + Prisma + MongoDB = eCommerce Website would be great. Another one would be NextJs 14 + Tailwind = Portfolio website. Keep up the good work. Love your Bootstrap videos
@ojal.dev. Жыл бұрын
Your content is awesome! Just try to be regular.
@asfandyar80887 ай бұрын
Great video sir. thank you very much
@couragechidi.67166 ай бұрын
this video was great, thanks a lot
@koolam51586 ай бұрын
life saver, thanks a lot sir
@RaddyDev6 ай бұрын
Glad it helped
@theanhcotam8 ай бұрын
rất dễ hiểu
@EminPogosbekov10 ай бұрын
thank you soo much for this video
@adarshrathi8265 Жыл бұрын
How I uploaded deploy full mern stack next js site upload on aws, nobody tell about that, I use filezilla but no happen, so please help
@RaddyDev Жыл бұрын
I did make a MERN AWS video not long ago which should help. You can do the same with NexJs, but the deployment method is very much manual. Every time you make a project chang and you want to upload, you'll have to either use GitHub to pull the new files or FTP the files, build the project and run it
@1982RUFF Жыл бұрын
Thanks! Very usefull video! I try to find video which help to make filtering with checkbox and price range depends on query params using MongoDB and Next 14... but its very hard) I will be very grateful if you can make such a video... thanks in advance!
@RaddyDev Жыл бұрын
That's definitely something I would like to work on soon. It's on the list 👌
@regilearn2138 Жыл бұрын
Hi can you teach us what is server side pagination and client side pagination any tutorials in your channel for both
@regilearn2138 Жыл бұрын
how to do both
@RaddyDev Жыл бұрын
I could look into it. I appreciate the suggestion
@laurraileanu837411 ай бұрын
isnt this code breaking when building? Dynamic Server Usage, because thats a server component using client search params
@RaddyDev10 ай бұрын
It builds perfectly fine and I haven't had any issues. I do see what you are saying and I will look into it. Should have used getServerSideProps instead. I assume that it works because client components are also rendered on the server. In fairness, my first pagination was done on the client side and then I converted it to Server. The params worked and didn't think twice
@ojal_sharnagat Жыл бұрын
How to do server side pagination by just fetching data from an API (without using MongoDB )? Please help! I'm stuck in the middle of a project.
@RaddyDev Жыл бұрын
So SQL or no database? You could look around for react pagination tutorials. Most of them should be using some sort of an API or db
@ojal_sharnagat Жыл бұрын
@@RaddyDev My API is like "admin.example.in/api/schemes?page=1&limit=6" I'm fetching the data from this API. The API has "page" & "limit" as params to pass. How to do the server-side pagination?