Telugu WebTech
Telugu WebTech
  • 246
  • 1 164 049

วีดีโอ

Next JS Full-Stack Project || Resort Bookings || Part-3
มุมมอง 305วันที่ผ่านมา
A full-stack resort booking project built with Next.js integrates dynamic, server-side rendering with a robust backend. The application offers users a seamless experience for browsing, selecting, and booking resort stays. It features user authentication, and a responsive, mobile-friendly design. The backend, handles API requests, and ensures data security. The project also incorporates modern t...
Next JS Full-Stack Project || Resort Bookings || Part-2
มุมมอง 22414 วันที่ผ่านมา
A full-stack resort booking project built with Next.js integrates dynamic, server-side rendering with a robust backend. The application offers users a seamless experience for browsing, selecting, and booking resort stays. It features user authentication, and a responsive, mobile-friendly design. The backend, handles API requests, and ensures data security. The project also incorporates modern t...
Next JS Full-Stack Project || Resort Bookings || Part-1
มุมมอง 60314 วันที่ผ่านมา
A full-stack resort booking project built with Next.js integrates dynamic, server-side rendering with a robust backend. The application offers users a seamless experience for browsing, selecting, and booking resort stays. It features user authentication, and a responsive, mobile-friendly design. The backend, handles API requests, and ensures data security. The project also incorporates modern t...
26. Reset & Forgot Password in NEXT.JS 14 Telugu
มุมมอง 35028 วันที่ผ่านมา
Implementing a password reset and "forgot password" feature in Next.js 14 involves creating server actions to handle user requests. First, generate a unique token and save it in the database when a user requests a password reset. Use Nodemailer to send an email with the reset link containing this token. Create a Next.js API route to handle the token verification and reset the password securely....
25. Next JS Middleware in Telugu
มุมมอง 193หลายเดือนก่อน
Middleware in Next.js is a powerful feature that allows developers to execute code before a request is processed by the server or client. It enables functionalities such as authentication, logging, or modifying requests and responses. Middleware is executed on the Edge Runtime, which means it can run close to the user, reducing latency. It is defined in a `middleware.ts` or `middleware.js` file...
24. Error-Handling in User Credentials Authentication with Next-Auth in Telugu
มุมมอง 204หลายเดือนก่อน
Auth.js v5 and Next.js 14 offer a comprehensive solution for user credentials authentication. With Auth.js, developers can implement secure authentication features such as password recovery, email verification, and two-factor authentication. Next.js 14 integrates seamlessly with Auth.js, providing server-side capabilities for managing authentication states. By leveraging NextAuth, a flexible au...
24. Next-Auth Authentication with User Credentials in Telugu
มุมมอง 329หลายเดือนก่อน
Auth.js v5 and Next.js 14 offer a comprehensive solution for user credentials authentication. With Auth.js, developers can implement secure authentication features such as password recovery, email verification, and two-factor authentication. Next.js 14 integrates seamlessly with Auth.js, providing server-side capabilities for managing authentication states. By leveraging NextAuth, a flexible au...
22. Next-Auth Authentication with Google account in Telugu
มุมมอง 506หลายเดือนก่อน
NextAuth.js provides a straightforward way to integrate Google Sign-In into your web application. By configuring NextAuth with Google as a provider, you enable users to authenticate using their Google accounts seamlessly. This setup simplifies user login, leveraging Google's secure authentication mechanisms. With built-in support for OAuth 2.0, NextAuth handles token management, session managem...
21. Next-Auth Authentication with GitHub account in Telugu
มุมมอง 319หลายเดือนก่อน
NextAuth.js is a flexible authentication library for Next.js applications, offering seamless integration with various authentication providers, including GitHub. By utilizing NextAuth.js with a GitHub account, developers can enable users to sign in using their GitHub credentials. This setup simplifies user management and enhances security by leveraging GitHub's robust authentication system. The...
20. Next JS Server-Actions in Telugu
มุมมอง 320หลายเดือนก่อน
In Next.js, server actions refer to the server-side operations that handle data fetching, processing, and rendering before sending the final HTML to the client. These actions are executed within the server-side functions . They enable dynamic data fetching for each request, enhancing performance and SEO by generating pre-rendered pages with the latest data. Server actions can also manage authen...
19. Next JS PUT & DELETE API Integration in Telugu
มุมมอง 426หลายเดือนก่อน
Integrating PUT and DELETE APIs in Next.js involves creating API routes within the `pages/api` directory. For PUT requests, update existing resources by defining an endpoint and using `req.method 'PUT'` to handle updates. Similarly, for DELETE requests, set up an endpoint and check for `req.method 'DELETE'` to handle deletions. Utilize functions like `fetch` or Axios on the client side to send ...
18. Next JS Post API Integration in Telugu
มุมมอง 4052 หลายเดือนก่อน
Post API integration in Next.js allows developers to send data to a server using HTTP POST requests. This process typically involves creating an API route within the Next.js application that handles incoming POST requests. By using built-in libraries like `fetch` or third-party solutions like `axios`, developers can send JSON data from the client side to the server. On the server side, the data...
17. Next JS CRUD operations (part-2) in Telugu
มุมมอง 3812 หลายเดือนก่อน
CRUD operations in Next.js API routes allow for creating, reading, updating, and deleting data. Using Next.js' built-in API routes, you can define functions to handle HTTP methods like GET, POST, PUT, and DELETE. These routes provide a way to interact with a backend database or external API. For instance, a POST request can create a new record, GET retrieves data, PUT updates existing data, and...
16. Next JS CRUD operations in Telugu
มุมมอง 6192 หลายเดือนก่อน
CRUD operations in Next.js API routes allow for creating, reading, updating, and deleting data. Using Next.js' built-in API routes, you can define functions to handle HTTP methods like GET, POST, PUT, and DELETE. These routes provide a way to interact with a backend database or external API. For instance, a POST request can create a new record, GET retrieves data, PUT updates existing data, and...
15. MongoDB connection with Next JS in Telugu
มุมมอง 5612 หลายเดือนก่อน
15. MongoDB connection with Next JS in Telugu
14. Next.JS API Routes in Telugu
มุมมอง 4312 หลายเดือนก่อน
14. Next.JS API Routes in Telugu
13. Next.JS Server-Side Data Fetching in Telugu
มุมมอง 6252 หลายเดือนก่อน
13. Next.JS Server-Side Data Fetching in Telugu
12. Next JS Layouts & Templates in Telugu
มุมมอง 5532 หลายเดือนก่อน
12. Next JS Layouts & Templates in Telugu
11. Next JS Image Component in Telugu
มุมมอง 4872 หลายเดือนก่อน
11. Next JS Image Component in Telugu
10. Next JS Styles & CSS Modules in Telugu
มุมมอง 4562 หลายเดือนก่อน
10. Next JS Styles & CSS Modules in Telugu
9. Next JS useRouter in Telugu
มุมมอง 5612 หลายเดือนก่อน
9. Next JS useRouter in Telugu
8. Next JS Client-Side and Server-Side Rendering
มุมมอง 7542 หลายเดือนก่อน
8. Next JS Client-Side and Server-Side Rendering
7. Next JS Catch-All Routing in Telugu
มุมมอง 5782 หลายเดือนก่อน
7. Next JS Catch-All Routing in Telugu
6. Next JS Navigation in Telugu
มุมมอง 7982 หลายเดือนก่อน
6. Next JS Navigation in Telugu
5. Next JS Dynamic Routing in Telugu
มุมมอง 7452 หลายเดือนก่อน
5. Next JS Dynamic Routing in Telugu
4. Next JS Nested Routing in Telugu
มุมมอง 7852 หลายเดือนก่อน
4. Next JS Nested Routing in Telugu
3. Next JS Basic Routing in Telugu
มุมมอง 1K2 หลายเดือนก่อน
3. Next JS Basic Routing in Telugu
2. Next JS Installation & Folder Structure in Telugu
มุมมอง 1.3K2 หลายเดือนก่อน
2. Next JS Installation & Folder Structure in Telugu
1. Next JS Full Course in Telugu | Introduction
มุมมอง 2.6K2 หลายเดือนก่อน
1. Next JS Full Course in Telugu | Introduction

ความคิดเห็น

  • @gogularamyanandini6649
    @gogularamyanandini6649 11 ชั่วโมงที่ผ่านมา

    I'm not getting Public folder ravadam ledhu andi

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 9 ชั่วโมงที่ผ่านมา

      You can create public folder manually

    • @gogularamyanandini6649
      @gogularamyanandini6649 9 ชั่วโมงที่ผ่านมา

      @@teluguwebtechtutorials what about pages,styles

    • @gogularamyanandini6649
      @gogularamyanandini6649 9 ชั่วโมงที่ผ่านมา

      @@teluguwebtechtutorials whats the reason not proper folder structure

    • @gogularamyanandini6649
      @gogularamyanandini6649 9 ชั่วโมงที่ผ่านมา

      Can you pls guide for my project

    • @gogularamyanandini6649
      @gogularamyanandini6649 9 ชั่วโมงที่ผ่านมา

      @@teluguwebtechtutorials If you are ok I will share my project details for you sir . I don't know about next js but task is given to me .

  • @ishamanisha9553
    @ishamanisha9553 13 ชั่วโมงที่ผ่านมา

    every class very well sir

  • @ishamanisha9553
    @ishamanisha9553 14 ชั่วโมงที่ผ่านมา

    👏👏👏👏👏🙌

  • @ishamanisha9553
    @ishamanisha9553 14 ชั่วโมงที่ผ่านมา

    nice explanation sir

  • @ishamanisha9553
    @ishamanisha9553 20 ชั่วโมงที่ผ่านมา

    very nice explanation

  • @mr.sanjusoftwaresolutions4926
    @mr.sanjusoftwaresolutions4926 วันที่ผ่านมา

    Super exploration brother every point explained well 🎉

  • @userrt-qo3rk
    @userrt-qo3rk วันที่ผ่านมา

    May god bless ur new journey with huge success and energy anna . melaga evaru fee transparent ga content and fee clear ga cheparu Nuvu course fee kuda mundey cheptunav anna 👍😊👌

  • @palaneee6020
    @palaneee6020 วันที่ผ่านมา

    Anna ee number phone cheste lift cheyatam ledu please life cheyamanu anna

  • @Royal-1992
    @Royal-1992 2 วันที่ผ่านมา

    Super

  • @prabhukumar6140
    @prabhukumar6140 2 วันที่ผ่านมา

    Thank you sir good teaching;

  • @shivaKumar-cy8mv
    @shivaKumar-cy8mv 2 วันที่ผ่านมา

    My age now 29 and intermediate MPC 2013 complete and BA 2023 passout in dr br Ambedkar Open University. I want to hard work learn skills "please suggest me best any skills"

  • @shivaKumar-cy8mv
    @shivaKumar-cy8mv 2 วันที่ผ่านมา

    My age now 29 and intermediate MPC 2013 complete and BA 2023 passout in dr br Ambedkar Open University. I want to hard work learn skills "please suggest me best any skills"

  • @shivaKumar-cy8mv
    @shivaKumar-cy8mv 2 วันที่ผ่านมา

    My age now 29 and intermediate MPC 2013 complete and BA 2023 passout in dr br Ambedkar Open University. I want to hard work learn skills "please suggest me best any skills"

  • @shivaKumar-cy8mv
    @shivaKumar-cy8mv 2 วันที่ผ่านมา

    My age now 29 and intermediate MPC 2013 complete and BA 2023 passout in dr br Ambedkar Open University. I want to hard work learn skills "please suggest me best any skills"

  • @shivaKumar-cy8mv
    @shivaKumar-cy8mv 2 วันที่ผ่านมา

    My age now 29 and intermediate MPC 2013 complete and BA 2023 passout in dr br Ambedkar Open University. I want to hard work learn skills "please suggest me best any skills".

  • @shivaKumar-cy8mv
    @shivaKumar-cy8mv 2 วันที่ผ่านมา

    Sir me contact id?

  • @satyanarayana480
    @satyanarayana480 3 วันที่ผ่านมา

    Hai Kalyan Sir, Please make a video on Jira Tool, GIT and GITHUB #Jira Tool for Developers

  • @AnushaNG-ls6kf
    @AnushaNG-ls6kf 3 วันที่ผ่านมา

    mobiles images raledhu bro

  • @lakki756
    @lakki756 4 วันที่ผ่านมา

    Sir please add real time project then only we get confidence , day to day work ala untadi ani cheyyandi,concepts youtube chusi udemy lo nerchukovachu but real time lo work cheyatam completely different

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 4 วันที่ผ่านมา

      Good suggestion! I'll make sure to share my experiences and explain how to transition into a professional real-time working environment. Thank you 👍

  • @VijayaKrishnaChinka
    @VijayaKrishnaChinka 4 วันที่ผ่านมา

    Chala baga explain chesaru andi SUPER. 🎊👏

  • @BhaaRaThh
    @BhaaRaThh 4 วันที่ผ่านมา

    Typescript kuda include untundha anna

  • @satyasingamsetti2919
    @satyasingamsetti2919 4 วันที่ผ่านมา

    Mern stack fees Anna

  • @Teja-qn7qm
    @Teja-qn7qm 5 วันที่ผ่านมา

    Is js tutorial completed

  • @SaiDhanush-p7w
    @SaiDhanush-p7w 5 วันที่ผ่านมา

    anna youtube videos delete chestava mari

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 5 วันที่ผ่านมา

      Don't worry, I will do more videos in this channel. This channel continues....

    • @userrt-qo3rk
      @userrt-qo3rk วันที่ผ่านมา

      @@teluguwebtechtutorials thanks anna god bless.

  • @SaiDhanush-p7w
    @SaiDhanush-p7w 5 วันที่ผ่านมา

    anna free content delete cheydu bro

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 5 วันที่ผ่านมา

      I will never delete any video in this channel. Don't worry

    • @dhanusheducationaltips7567
      @dhanusheducationaltips7567 5 วันที่ผ่านมา

      ​​@@teluguwebtechtutorialsthank u bro ❤❤

    • @userrt-qo3rk
      @userrt-qo3rk วันที่ผ่านมา

      @@teluguwebtechtutorials anna please.continue ur videos anna in channel

  • @KrishnaReddy-vz4cn
    @KrishnaReddy-vz4cn 5 วันที่ผ่านมา

    Ok sir very good sir I will contact you

  • @sai_788
    @sai_788 5 วันที่ผ่านมา

    Hi sir looking forward for the training

  • @angleammuluu1209
    @angleammuluu1209 5 วันที่ผ่านมา

    Good to hear annaya ....Tq 😊

  • @cricketsureshlucky
    @cricketsureshlucky 6 วันที่ผ่านมา

    Thankyou sir

  • @cricketsureshlucky
    @cricketsureshlucky 6 วันที่ผ่านมา

    sir meeru push chesina code lo only one firm can be added to the particular vendor or can we add mutiple firms to a paricular vendor sir

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 5 วันที่ผ่านมา

      Yes I limited the vendor to add only 1 firm to avoid conflict.

  • @RanadheerMachineni
    @RanadheerMachineni 6 วันที่ผ่านมา

    thanks bro...

  • @Jarpulaabhi5
    @Jarpulaabhi5 7 วันที่ผ่านมา

    Anna nuvu switch gurinchi chepaledhu....

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 7 วันที่ผ่านมา

      It's there, covered in 10 & 11th videos, plz check out

  • @bhagidasari9051
    @bhagidasari9051 8 วันที่ผ่านมา

    Why we didn't use useeffect here while updating number. . But in previous video while using setstate in usestate we used useeffect

  • @vlgowthami
    @vlgowthami 8 วันที่ผ่านมา

    when we command npm run dev it is showing npm error . please tell me how to solve it

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 8 วันที่ผ่านมา

      Check whether u r in current directory or not? "cd your project name"

    • @vlgowthami
      @vlgowthami 8 วันที่ผ่านมา

      @@teluguwebtechtutorials yeah done . Thank you

  • @vamsiss6716
    @vamsiss6716 8 วันที่ผ่านมา

    Anna Super Explanation Anna

  • @cricketsureshlucky
    @cricketsureshlucky 8 วันที่ผ่านมา

    sir database lo maathram only vendors lo firm lo id okkate chuupisthundhi sir but get chesinappudu motham firm details vachay sir explain sir

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 8 วันที่ผ่านมา

      This is how I wanted wrote the code, Id is related to record with reference to model, and properties populated in it. Logic with code is in controller

    • @cricketsureshlucky
      @cricketsureshlucky 8 วันที่ผ่านมา

      Thank you sir😊

  • @vlgowthami
    @vlgowthami 8 วันที่ผ่านมา

    One of the best video that I have never seen . Too good , great bro 🙌🙌

  • @ravaligodasi5560
    @ravaligodasi5560 8 วันที่ผ่านมา

    your videos are superb ,learning in easy way with u r videos kindly do videos on Functions and callback functions and promise fetch concepts

  • @user-vy2vl9wt5i
    @user-vy2vl9wt5i 8 วันที่ผ่านมา

    Hi sir if we update 20 fields at a time then can we write 20 fields

  • @bhagidasari9051
    @bhagidasari9051 10 วันที่ผ่านมา

    Very nice content

  • @mangisettigeethika4816
    @mangisettigeethika4816 10 วันที่ผ่านมา

    Sir, auto import extension name cheparaa eh video lo??

  • @tollenulaharika7786
    @tollenulaharika7786 10 วันที่ผ่านมา

    Hello sir ! Out of four components,last compo's output is displaying but remaing output is not displaying

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 10 วันที่ผ่านมา

      In App.jsx file, Mount the components which u want to render

  • @sindhunangunuri1968
    @sindhunangunuri1968 10 วันที่ผ่านมา

    When I deploy my code to vercel, I am unable to register or login. What will be the issue sir?

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 10 วันที่ผ่านมา

      Check the "url s" passed to login & register, local host will not work in Vercel

  • @saivardhan3452
    @saivardhan3452 10 วันที่ผ่านมา

    bro can u send the pdf that u r telling it is usefully like notes to me

  • @KrishnaReddy-vz4cn
    @KrishnaReddy-vz4cn 11 วันที่ผ่านมา

    Happy Teacher’ Day sir. Thank you for everything you have given me. ✨

  • @Kalyan18151
    @Kalyan18151 11 วันที่ผ่านมา

    JavaScript depth velte baaga hardly untada sir

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 11 วันที่ผ่านมา

      Nothing like that, infact u will enjoy writing code and programming

  • @user-vy2vl9wt5i
    @user-vy2vl9wt5i 12 วันที่ผ่านมา

    Bro best next js youtbe channel I never seen like this type of channel plz don't stop bro

  • @User-083-3
    @User-083-3 12 วันที่ผ่านมา

    Naku assignment remove button ki error vasthumdhi broo help mee please

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 12 วันที่ผ่านมา

      Try chatGPT Paste the code of error in chatGPT and ask what's the error?

    • @User-083-3
      @User-083-3 12 วันที่ผ่านมา

      @@teluguwebtechtutorials avani try chesina broo mali error vasthunai

  • @pardhuvasireddy5391
    @pardhuvasireddy5391 12 วันที่ผ่านมา

    Bootstrap kuda start chiyandi sir please

    • @teluguwebtechtutorials
      @teluguwebtechtutorials 12 วันที่ผ่านมา

      Sure, I've plans to make a video on Bootstrap, I'll upload soon

  • @pardhuvasireddy5391
    @pardhuvasireddy5391 12 วันที่ผ่านมา

    Bootstrap kuda start chiyandi sir please