NestJS Tutorial For Beginners - Learn NestJS

Поделиться
HTML-код
  • Опубликовано: 22 авг 2024
  • 🌟 Hostinger - hostinger.com/...
    Use the code PEDROTECH to save 10% on premium VPS shared hosting and get up to 91% off on all yearly hosting plans.
    Code: github.com/mac...
    🚀 Learn ReactJS By Building 6 Projects: codedamn.com/l...
    🐙 GraphQL Course: codedamn.com/l...
    Social
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    Website: machadopedro.com
    Linkedin: / machadop1407
    Instagram: / pedro.fmachado_
    Github: github.com/mac...
    Business Email: pedro@pedrotech.co
    🌟 Gear / Hardware I Use and Recommend 🌟
    ▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬▬
    💻 amzn.to/42kqFuM 💻 Monitor
    🖱️amzn.to/3C0ZhHb 🖱️ Mouse
    📷 amzn.to/3OHJvbM 📷 My Camera
    🎤 amzn.to/3oxSthj 🎤 My Microphone
    ⌨️ amzn.to/3oFPpj1 ⌨️ My Microphone
    ⚡ amzn.to/3MYMnzM ⚡ LED Lights In the Background
    Tags:
    - ReactJS Tutorial
    - ReactJS and MySQL
    - NodeJS Tutorial
    - API Tutorial
    ..........
    ♬ MUSIC ♬
    Artist: tubebackr
    Track: Chill With Me
    @tubebackr
    hypeddit.com/tubebackr/chillwithme-1
    .............
    #nestjs #coding

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

  • @mateussoares7599
    @mateussoares7599 3 месяца назад +2

    just started learning nest, you uploaded this in the right moment

  • @abdulrazaqharoon2733
    @abdulrazaqharoon2733 Месяц назад +1

    @47:00, splice remove based on index and not the actual ID of the array

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

    nice video, kinda reminde of angular,
    actually i'm using express, but nest look great
    great video.

  • @mahdiandalib186
    @mahdiandalib186 3 месяца назад +2

    thx man, plz create a nest and react js tutorial

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

    @3:00 If you are on Windows you need to run cmd as administrator

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

    I'm already working for a second company that uses Nest and it's great once you get to learn it but overall I believe that just building the backend with Node and express is just as fine. It's overall just a matter of preference.

  • @joseph5058
    @joseph5058 14 дней назад

    awesome video. my question is how did you set your terminal like that? please drop the extension

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

    Finally pedro🎉❤....been waiting on this cus you teach so well

  • @SamsunNahar-zu8cd
    @SamsunNahar-zu8cd 3 месяца назад

    Can have a "NextJS" Tutorial as well. Your tutorials are really helpful. Thank you

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

    Lookin forward to your AWS tutorial man!

  • @jean-louisgouwy
    @jean-louisgouwy 3 месяца назад +1

    Honestly, I have a lot of difficulties to take on hands nest. It reminds me Angular.
    The dev exp doesn't fit for me.
    Many years ago, I did some PHP with laravel, and the dev exp was amazing. And recently, I discovered AdonisJS which clearly takes the same roads than Laravel. Very pleasant !

    • @bugraotken
      @bugraotken 3 месяца назад +1

      It's creator Kamil was from Google team (developer expert) That's the reason of Angular-like syntax (decorator based)

    • @jean-louisgouwy
      @jean-louisgouwy 3 месяца назад +1

      @@bugraotken aaah that is the reason 😅 well I doesn’t annoy me, but I feel better with adonis 😅 we are all influenced by our past experiences

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

      @@jean-louisgouwy I'll check Adonis =))

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

    Thank you very much for this tutorial.
    And please also make in depth tutorial on Authorization and authentication in Nestjs.
    And also make some projects in it. ❤

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

    Would love to see a full course of NestJS.

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

    Well done Pedro, NestJS is amazing!

  • @sam-obisikechibueze3765
    @sam-obisikechibueze3765 3 месяца назад

    Well done Pedro. I suggest you do more of backend videos than frontend.

  • @user-bh8oe4zr2c
    @user-bh8oe4zr2c Месяц назад +1

    in update service don't use map as it does not alter the original array use instead
    update(bookId: number, updateBookFields: Partial): Book | undefined {
    const currentBook = books.find((book) => book.id == bookId);
    const updateBook: Book = {
    id: updateBookFields.id ?? currentBook.id,
    title: updateBookFields.title ?? currentBook.title,
    author: updateBookFields.author ?? currentBook.author,
    publicationYear:
    updateBookFields.publicationYear ?? currentBook.publicationYear,
    };
    books.forEach((book, index) => {
    if (book.id == updateBook.id) {
    books[index] = updateBook;
    }
    });
    return updateBook;
    }

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

    Pedro, this video is very wonderful. You can make a whole tutorial series on this framework ,
    follow you from Iraq

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

    Love it ! Thank you very muchhh

  • @Peacemaker.404
    @Peacemaker.404 3 месяца назад

    Thank you very much pedro!

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

    @39:28 swap the object in line 31 so its; const updatedBook = {...currentBook, ...updatedBookFields}

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

    please go ahead with a project or an in-depth tutorial using graphql and prisma if possible

  • @tinolbhoyar4646
    @tinolbhoyar4646 28 дней назад

    error TS2688: Cannot find type definition file for 'babel__generator'.
    The file is in the program because:
    Entry point of type library 'babel__generator' specified in compilerOptions

  • @user-xd6fr3hs2z
    @user-xd6fr3hs2z 3 месяца назад

    Wow Thats great PedroTech

  • @CydoEntis-dx7cl
    @CydoEntis-dx7cl 3 месяца назад +1

    Am I crazy or did you not link the repo/file from @8:50

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

      You are not crazy, I lost the code when my computer crashed. Got it back: github.com/machadop1407/nestjs-tut

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

    thanks

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

    Please make a full video on nest js with a project. We want nest js + mongodb + react js project with authentication using jwt.

  • @aymenbachiri-yh2hd
    @aymenbachiri-yh2hd 3 месяца назад

    thnks man

  • @regilearn2138
    @regilearn2138 3 месяца назад +1

    Bro please don't delete comment threads.

  • @PsychoDude
    @PsychoDude 22 дня назад

    Even tho I learnt with this, I feel like it could have been more polished, like the @Post you did a lot of confusion, maybe should have just restarted the recording to that part. Edi: the update part was even more of a mess

  • @2gbeh
    @2gbeh 3 месяца назад +1

    E for Effort.

  • @julesruzindana-rukundo6254
    @julesruzindana-rukundo6254 3 месяца назад

    hi do you know if its possible to upload/download images in nestjs if my application is dockerized?

  • @Paradox_1
    @Paradox_1 2 месяца назад

    NextJs ?

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

    saudade dos videos :)

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

    Next js when?

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

    🎉🎉🎉

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

    Wohoooooo

  • @godofwar8262
    @godofwar8262 3 месяца назад +6

    Bro please start the backend series beginners to advanced from node
    js with a project please
    Bro please at least reply that you will make it or not and if so then till me approx time

    • @bugraotken
      @bugraotken 3 месяца назад +4

      Man, why are you bothering a tutor for creating a series? We all love Pedro but there are thousands of videos on RUclips with the topic just you want. Come on, are not you tired of wanting the same things again and again and again? Just use search button and type node.js backend and choose one, it's not rocket science.

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

      @@bugraotken i already searched it but most of are old

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

      Why not go study and make one yourself. What you don for Pedro 👀

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

    I hate this concept. Express has better router and we can handle req and res very easy

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

      Good, that's you not us

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

      I was the same. Then I learnt it and never going back to simple express.

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

      This is using express under the hold

    • @bugraotken
      @bugraotken 3 месяца назад +2

      Nest.js was written on top of Express and it is filling an empty area of Architecture. It forces you to build a well architectured, organized backend. You can write a backend in different structures at Express so in your team everyone can write it in different ways but in Nest.js there is one way and it is the easiest one trust me. (unless you are working on your own)

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

      same I did not like Nest but I found Adonis.js it is similar to Laravel and easy to learn