Backend Development Roadmap for Beginners in 2024 | Tanay Pratap

Поделиться
HTML-код
  • Опубликовано: 24 окт 2023
  • In this video, learn more about the E of MERN stack which is Express framework.
    Understand How, When, and What to learn in Backend Roadmap.
    The ideal way to learn Backend and become a Full Stack Developer.
    #backend #backenddeveloper #expressjs #nodejs #tanaypratap
    ------------------------------------------------------------------------------------------------------
    Like, Share, and Subscribe for more!
    Follow me on my other social media handles for all updates, events, and live sessions-
    Instagram: / tanaypratap
    Facebook: / tanayofficial
    LinkedIn: / tanaypratap
    Twitter: / tanaypratap
    ------------------------------------------------------------------------------------------------------------------
    What's my story? An engineer, in love with his job, started teaching on the side. Got lucky. Impacted 1000s of lives. Had to finally leave his job to increase the impact surface area. Raised $5M funding to fix education. Is learning day and day about startups and building a valuable product.
    How is it going? A decade of engineering helps in systems thinking and product building. Learning about Strategy, Marketing, People Management, and Finance on the go.
    What am I building? Today, 25 million Indians prepare for government job entrance exams. They do it for years together. The probability of success is less than 1% but they still do it. Why? For the lack of a structured alternative to launch their white-collar career. I am building Invact to bridge this gap.
    How? Follow me to know, it's a long story. I am telling it in parts every day.

Комментарии • 374

  • @harshvardhansingh8819
    @harshvardhansingh8819 8 месяцев назад +73

    Lots of love from a small town, where it is not possible to get right guidance. Thank you bhaiya for bridging this gap❤

    • @tanaypratap
      @tanaypratap  8 месяцев назад +11

      Thank you 🙏🏻

    • @yashgupta-ph1dq
      @yashgupta-ph1dq 8 месяцев назад +1

      @@tanaypratap Want(?)--->Hacker(banana)--->(Help).
      expectation from video:
      1) Less Money is OK but Start as fast as possible.
      2)Approach should be Practical based.(Learn Theory less practical More)

  • @faizanvlog9883
    @faizanvlog9883 8 месяцев назад

    nice video sir amazing mujhe jab bhi jo problem ati suddenly aap same wohi topic pe aap video bana dete ho thanks bhaia

  • @nabilhassan3407
    @nabilhassan3407 Месяц назад

    Kitnay hi din se aik confusion thi Jo solve hi nai ho k de Rai thi. But your video explained it easily. Excellent content.

  • @SSDas2024
    @SSDas2024 7 месяцев назад +1

    Thank you tanay bhai for your comprehensive guidance.

  • @gowthamNayak0007
    @gowthamNayak0007 8 месяцев назад +5

    This vedio was much needed for me , and thank you Tanay sir for this. Keep guiding us ❤ .

  • @Web-Himansu
    @Web-Himansu 8 месяцев назад +7

    HAULE HAULE sab sikh jaenge bhaiya.

  • @prashantsingh5142
    @prashantsingh5142 8 месяцев назад +1

    Thanks for the beautiful advices.

  • @itsMohak
    @itsMohak 8 месяцев назад

    Arey Vah! Super good.

  • @sushilsrivastav1209
    @sushilsrivastav1209 8 месяцев назад

    Luv U lots Bhaia ...abhi to front-end kar rha...aapke kahe anusar...future me is roadmap ko v consider karenge

  • @shubhambhatra
    @shubhambhatra 8 месяцев назад +1

    Aha, maja aa gaya!
    Watched 3 videos of yours continuously, you're FAN already!

  • @user_abhigupta
    @user_abhigupta 8 месяцев назад +21

    For backend the most challenging part is writing controller ❤

    • @metaaffinity
      @metaaffinity 8 месяцев назад

      this can be easy if we follow the MVC, so with this we can clean our code and make it understandable.
      its the simple scnerio that we can follow for making controller
      export const register = async(req,res,next)=>{
      try {
      const{name,email,password} = req.body
      console.log(req.body)
      let user = await User.findOne({email})
      if(user) return next(new ErrorHandler("User already exist",404)) //error handler
      // if(user)
      // return res.status(404).json({
      // success:false,
      // message:"User Already Exist"
      // });
      const hashpassword = await bcrypt.hash(password,10)
      user = await User.create({name,email, password:hashpassword})
      sendCookie(user,res,"Registered successfuly",201)

    • @piyushmishra1961
      @piyushmishra1961 8 месяцев назад +3

      No, it's service class

  • @ramsuryawanshi1101
    @ramsuryawanshi1101 8 месяцев назад +2

    This video is most useful for me...❤

  • @InspireUShorts58
    @InspireUShorts58 8 месяцев назад +7

    Spiritualism is inner beauty ❤

  • @prasadshingne6992
    @prasadshingne6992 8 месяцев назад

    Thanks for clearing my doubt

  • @Mr_indiawale
    @Mr_indiawale 8 месяцев назад

    Very nice bhai I am big fan of you haule haule sikhna hai samjha gya thanks 🙏 bhaiya

  • @metaaffinity
    @metaaffinity 8 месяцев назад +5

    Tanay bhai, you are truly amazing. I want to say it again, you've helped me solve every problem I've faced and cleared up any confusion. Thank you, Tanay bhai. LOVE from Pakistan.

  • @targetme5716
    @targetme5716 8 месяцев назад

    Thanks for right guidance

  • @lifespend3080
    @lifespend3080 8 месяцев назад +9

    You are emotionally connect with Avery developer.
    You are great sir you always talk real problem ❤ Thanks a lot for this information ❤

  • @nitinsingh2737
    @nitinsingh2737 8 месяцев назад

    Thnx for this wonderful video

  • @ThinkCode-
    @ThinkCode- Месяц назад

    Thanks for explaining alot of things in small time.❤

  • @online_sourcecode1613
    @online_sourcecode1613 8 месяцев назад +1

    it's done now waiting for next part 2

  • @shaankhan2812
    @shaankhan2812 8 месяцев назад

    Life changing video❤

  • @samarjeetsinghkheda9460
    @samarjeetsinghkheda9460 4 месяца назад +2

    1) what is server, client, cdn, db?
    2) set up rest api for postman client
    3) query parameter, route parameter, multiple route parameter, header in GET request
    4) errorr handling in GET
    5) POST request (request body, https, error handling, data validation, JSON in POST)
    6) REST api (REST verbs, naming, predictability, nesting, success code, error code)
    7) Code organization in REST
    8) Handle user (db update, db connection)

  • @RajeevTutorials-ii4jc
    @RajeevTutorials-ii4jc 8 месяцев назад

    hn jii bhiya jii bhut sundr lg rha ho🫡😍😍

  • @MuhammadAhmad-dq9cp
    @MuhammadAhmad-dq9cp 8 месяцев назад

    Tanay Bhai thanks for teaching so good, love from pakistan.

  • @komaltripathi694
    @komaltripathi694 5 месяцев назад

    Thanku Sir..

  • @mehzee92
    @mehzee92 8 месяцев назад +1

    Great topic
    Love from Pakistan

  • @adnanhussain9276
    @adnanhussain9276 8 месяцев назад

    I really like ur Avatar bhaiyya .
    Navratri,Vijay-Dashmi ki sabhi ko hardik shubkamnaa...
    Kal mene bhi ravan jalaya means baccho ki help Kari 😉 .

  • @dreamer5632
    @dreamer5632 8 месяцев назад

    i am quiet confident with all the level 1 you shared now i want to master it an i am looking for resources

  • @Nitesh_Saini_
    @Nitesh_Saini_ 8 месяцев назад +1

    I am waiting for node js .
    And please upload the video as soon as possible

  • @hardworkout3825
    @hardworkout3825 Месяц назад

    Looking gud sir ❤

  • @parthtate2221
    @parthtate2221 8 месяцев назад +3

    Make video on UI/UX Design carries path and future of ux design.

  • @sayantanmanna1360
    @sayantanmanna1360 8 месяцев назад

    waiting for the next one!!

  • @Surajsingh-tt6hh
    @Surajsingh-tt6hh 8 месяцев назад

    Love it

  • @EthicalRaja
    @EthicalRaja 8 месяцев назад

    great work.

  • @asadanik5987
    @asadanik5987 Месяц назад

    awesome .. love from Bangladesh

  • @udaybheda8049
    @udaybheda8049 8 месяцев назад +2

    Tanay Sir Flutter ke Upar Ak Video Banao Please, Usme aage jakar kya scope hai qsha sab batao .....Abhi me usme internship kar raha hu to aage kishi or me switch karna chahiye ya nahi ....... Sab batao please flutter ke bare me ak baar video banakar ......
    Your all videos always awasome and helpful ✅❤️

  • @rahoolsinghdotinc
    @rahoolsinghdotinc 8 месяцев назад +1

    🤣🤣 That background music, reminds me of that class 7-8 when I used to get ready for school and the Astro program running on the TV.
    Apart, I am properly learning the Javascript basics and practising, thinking of everything I see around in the Javascript from my Wi-Fi bill to Flipkart's invoice and complex sites like Flipkart product page and all, how things were made. it's my 21st day I started with this structured learning path, and I figured out that I was doing everything with the jugad till now, but also now I understand each flow like how the flow of the program is going. Although I have been stuck many times gradually I'm improving. And thanks to you I'm not rushing to learn many things to put on my Resume, instead mastering the few to think of any solution in the particular language, javascript.
    Also, I'm teaching my juniors what I completely understand and that also clears all my doubts.

  • @sumantade3671
    @sumantade3671 8 месяцев назад +1

    Bhaiya Eyh Samajh Gaya, Agla Wala Liya.

  • @junaidmohammed3148
    @junaidmohammed3148 8 месяцев назад

    Samajh aagiya bhaiya, Haule haule sae sikhengae❤🎉, agla part lekae aaiyae acchae sae haule haule sae❤

  • @sudippaladhi2736
    @sudippaladhi2736 8 месяцев назад

    Lot's of love bhaiya 🥰🥰

  • @technicalresi5451
    @technicalresi5451 8 месяцев назад

    Very nice sir 😊❤

  • @eziosan7208
    @eziosan7208 8 месяцев назад +2

    DotNet and Laravel ❤

  • @FighterHighlights12
    @FighterHighlights12 8 месяцев назад +2

    TANAY SIR , FLUTTER KE UPR AK VIDEO BANAO PLEASE.....ME ABHI USME INTERNSHIP KAR RAHA HU TO AAGE JAKE KYA SCORE HAI OR USME AAGE JANA CHAHIYE YA NAHI........ YA KISHI OR ME SWITCH KARNA CHAHIYE ...... AK VIDEO ME FLUTTER KE BARE ME BATAO PLEASE 🙏...
    AND ALL VIDEOS ALWAYS GOOD AND HELPFUL ❤️

  • @the_bat_man
    @the_bat_man 8 месяцев назад

    Sir please make a video about. Which Backend framework (With good future scope) should we learn to get a job as a beginner.

  • @SandeepMR26
    @SandeepMR26 8 месяцев назад

    Tanay Bhaiya ❤

  • @Naveen-hj9vx
    @Naveen-hj9vx 8 месяцев назад

    great content bhaiya ...please make video on road map of ETL Python developer

  • @kizigamer6895
    @kizigamer6895 8 месяцев назад

    Yes sir thanks for this amazing video I learnt a lot from this and helped me clear many questions I had on what to do
    Now mai HAULE HAULE sikhunga aur amazing apps and api show karunga
    Sir pls make a video where you teach data modeling and how to think of writing a good rest api 🙏🙏🙏

  • @Itachi_Uchia1
    @Itachi_Uchia1 4 месяца назад

    Jai Mata ji Bhaiya 🙏

  • @zohaibkhan5126
    @zohaibkhan5126 8 месяцев назад

    HAULE HAULE Sikhy gy Bhaiya.

  • @ruhaniyat_khwab
    @ruhaniyat_khwab 8 месяцев назад

    please make a video for email marketing vs software testing? career growth and salary, future security.

  • @akshayjadhav5150
    @akshayjadhav5150 8 месяцев назад +1

    Haule Haule sikh jayenge sab kuch bhaiya..bas thoda ashirwad banaye rakhna❤❤❤

  • @shreyashpawar9108
    @shreyashpawar9108 8 месяцев назад +1

    Haule haule mene Javascript with advance concepts Sikh Ilya Namaste Javascript ✌️ ab Haule Haule React me enter krne wala hu😊

  • @mrnabby4178
    @mrnabby4178 6 месяцев назад

    Im a front end developer learning backend now.

  • @manideepmani8946
    @manideepmani8946 8 месяцев назад

    Agla wala chahiyee..bhai❤

  • @hassaanahmad2499
    @hassaanahmad2499 8 месяцев назад

    Hi thanks for making video
    I request you to make a video road map of Vue js

  • @awais_ansarii
    @awais_ansarii 3 месяца назад

  • @SN20768
    @SN20768 8 месяцев назад +2

    Hi, could you please make a video on jobs with better work life balance...I was on a career break to concentrate on family. Now trying to return...Not sure which path to choose as family is my first priority..Can u plz make a video on careers with better balance.

  • @Tareq0025
    @Tareq0025 8 месяцев назад

    bosss!❤

  • @RishiRajxtrim
    @RishiRajxtrim 8 месяцев назад

    👍👍

  • @Pardeep.Meghwar
    @Pardeep.Meghwar 8 месяцев назад

    Looking Haule Haule in this outfit

  • @darshanmahajan4034
    @darshanmahajan4034 8 месяцев назад

    Samaj gaya bhaiya agla bataiye.

  • @user-sb8hv2eb8f
    @user-sb8hv2eb8f 8 месяцев назад

    achha, samajgya, hmm

  • @NomanKhan-xp3ed
    @NomanKhan-xp3ed 8 месяцев назад

    haule haule sikha jayge bhaiya, ye smjh gya agla wala lain, tbh cant wait for next topic

  • @FactsbyAbhijeet
    @FactsbyAbhijeet 8 месяцев назад +1

    Make a video about ASP. NET
    Future scope...❤❤

  • @yatinpatel4123
    @yatinpatel4123 8 месяцев назад

    Waiting.. for advanced video. Because I already learn node.js. i want to check whatever i learn is enough or need to learn more...

  • @prathameshpatne6704
    @prathameshpatne6704 8 месяцев назад +2

    bhaiya please Flutter pe ek video banao naa Please

  • @CMOMKARSHELKECM
    @CMOMKARSHELKECM 4 месяца назад +1

    Bhaiya Haule Haule karenge
    Pehele socha tha iske bad data scientist me jaunga
    Apke videos ne akhe kholdi
    ab sheka career bhi mern aur react native ko hi samarpit hai
    Chal padhe hai bhaiya raha par lambi lakir ke.
    Vaisa mai mern stack ke liye try kar raha hu
    2 sal hai aur graduation ko
    Js,html,css hogaya good level par
    Ab gadi react ki taraf ja rahai hai
    Lots of love bhaiya ❤❤❤

  • @itsankitbhusal
    @itsankitbhusal 8 месяцев назад +3

    hello sir, need a roadmap for learning next js, after the react intermediate

  • @patelronak153
    @patelronak153 8 месяцев назад +1

    Haule Haule backend Sikh jayenge❤

  • @tech_channel110
    @tech_channel110 8 месяцев назад

    sir ap playlist bana dijiye technologies per
    for example on javascript and react etc...

  • @keertichourasiya8272
    @keertichourasiya8272 8 месяцев назад +1

    please make a playlist or tutorial for angular🙏 please tanay bhaiya

  • @NitinKumar-jc7bg
    @NitinKumar-jc7bg 8 месяцев назад

    bhaiya please make a video on guide of GSOC 2024 for begginers please ! ❤❤

  • @mahdihasan3644
    @mahdihasan3644 8 месяцев назад +1

    Bro I don't know what happened, whenever I watch your videos I'm like😲😲 bro how can you explain these things easily.. Thanks bro for helping in this way...

    • @tanaypratap
      @tanaypratap  8 месяцев назад

      Thank you 🙏

    • @mahdihasan3644
      @mahdihasan3644 8 месяцев назад

      @@tanaypratap Bro take my love from BANGLADESH

  • @shoaib4x533
    @shoaib4x533 8 месяцев назад +3

    Sir plzz ek video #python #background #roadmap plzz ❤

  • @developer1853
    @developer1853 8 месяцев назад

    Please make video on php, laravel scope roadmap

  • @FighterHighlights12
    @FighterHighlights12 8 месяцев назад +1

    FLUTTER ke upr ak video banao please TANAY SIR ✅ FULL INFORMATION FOR NOW and FUTURE

  • @animedonghuasub1230
    @animedonghuasub1230 8 месяцев назад

    🔥next🔥

  • @raakshas5547
    @raakshas5547 8 месяцев назад

    Bhaiya, Jai Shree Krishna . Bhaiya , please make a tutorial video on Mongo DB (basic to intermediate level)

  • @sumitjain2415
    @sumitjain2415 8 месяцев назад

    please make video on the linked in how to make a simple and a good profile

  • @adityasalve385
    @adityasalve385 8 месяцев назад +1

    Haule Haule Ho Jayega Developement❤🙏🏻

  • @Bidhan_Ranjan_Bhoi
    @Bidhan_Ranjan_Bhoi 8 месяцев назад

    Thanks a lot bhaiya, I'm good at html,css,js and react but i was little confused to learn node.js bcoz hibernate aur springboot mein learn kar raha tha...but phir bhi main node+express+mongo sikhungaa..2month kafi ho jayega na bhaiya...plzz bhaiya reply dena..Lots of love bhaiya. from tier 3 clg..❤️

  • @bhushanambhore8378
    @bhushanambhore8378 8 месяцев назад

    Bhaiyaa ye sab to aata hai, acchhe khase projects bhi banaye hai inpar lekin Job hi nhi mil rahi... Btw nice video waiting for 2nd part..

  • @gopala2002
    @gopala2002 3 месяца назад

    Ok

  • @abhishekjha8953
    @abhishekjha8953 8 месяцев назад +1

    Spring boot roadmap pls 🙏🙏

  • @rohitchand3853
    @rohitchand3853 8 месяцев назад

    Haule Haule kr denge , agla wala laiye

  • @TimeTrueTrivia
    @TimeTrueTrivia 8 месяцев назад

    Haulae ❤❤❤❤❤❤

  • @MrChange33
    @MrChange33 8 месяцев назад +1

    TANAY BHAI FLUTTER DEVELOPMENT KE UPAR KITNE DIN SE VIDEO NAHI DALA .....
    USKA KUCH BATAO KI USKA SCOPE OR AAGE JAKE KYA HOGA ......
    ME ABHI USME INTERNSHIP KAR RAHA HU ...... TO KISI OR ME SWITCH KARNA CHAHIYE YA USME HI RAHU .....THODA GUIDE KARO SIR FLUTTER KE BARE ME PLEASE 🙏
    ALL VIDEOS ALWAYS GOOD 👍✅

  • @wordpresstime4290
    @wordpresstime4290 8 месяцев назад

    Tanay Bhai, please 1 video on Laravel.

  • @noorfarhan3573
    @noorfarhan3573 8 месяцев назад

    sirr pls make a roadmap on finance analyst

  • @afootshorts2304
    @afootshorts2304 8 месяцев назад +1

    Pura reality bataya bhaiya serf nodeJs se kam nahi chalega pure backend mae jana hae toe dusra kuch choose karo . Seriously market aisey hae koi bata ta nahi hae ...

  • @views-re2om
    @views-re2om 7 месяцев назад

    Holy shit! this is so hard i think farming is better for me lol

  • @user-pi1ff8jy8y
    @user-pi1ff8jy8y 7 месяцев назад +1

    In interviews i have been asked about CI / CD . I still cant figure out how to master or practice this. as in my company we host backend on render and frontend on vercel for development.

  • @VishalKumar-vv9hx
    @VishalKumar-vv9hx 8 месяцев назад

    Bhaiya, agla wala layeiye❤

  • @Sumit_katara_6
    @Sumit_katara_6 8 месяцев назад

    Bhiya aap web development ka ek full tutorial upload kr do RUclips pe plz.....thodi help ho jayegi ❤

  • @akashashokunhale1
    @akashashokunhale1 7 месяцев назад +1

    haule haule sikhenge bhaiyaa...😊

  • @ShortsHSK
    @ShortsHSK 8 месяцев назад

    🙏

  • @factscharcha
    @factscharcha 8 месяцев назад +1

    Please also make a video about Python and Django development. You give very good advice but I can't find any video about the roadmap of Django and Python on your channel. It will be very helpful for me and many others.

  • @sudheebhaskar
    @sudheebhaskar 8 месяцев назад +1

    HauleHaule sikenhenge bhaiya,,,,, advanced roadmap ka bhi video kijiye,,,,

  • @tojifushigoro3134
    @tojifushigoro3134 8 месяцев назад

    A video on react native and flutter