NestJS Tutorial For Beginners - Learn NestJS

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 พ.ย. 2024

ความคิดเห็น • 57

  • @mateussoares7599
    @mateussoares7599 6 หลายเดือนก่อน +3

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

  • @tomasburian6550
    @tomasburian6550 6 หลายเดือนก่อน +1

    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.

  • @jean-louisgouwy
    @jean-louisgouwy 6 หลายเดือนก่อน +2

    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 6 หลายเดือนก่อน +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 6 หลายเดือนก่อน +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 6 หลายเดือนก่อน

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

  • @Lunolux
    @Lunolux 6 หลายเดือนก่อน +4

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

  • @mahdiandalib186
    @mahdiandalib186 6 หลายเดือนก่อน +3

    thx man, plz create a nest and react js tutorial

  • @abdulrazaqharoon2733
    @abdulrazaqharoon2733 4 หลายเดือนก่อน +1

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

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

    Will you make more NestJS tutorial series?

  • @joseph5058
    @joseph5058 3 หลายเดือนก่อน

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

  • @SamsunNahar-zu8cd
    @SamsunNahar-zu8cd 6 หลายเดือนก่อน

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

  • @iUmerFarooq
    @iUmerFarooq 6 หลายเดือนก่อน

    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 6 หลายเดือนก่อน

    Would love to see a full course of NestJS.

  • @murtadanazar
    @murtadanazar 6 หลายเดือนก่อน

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

  • @dirtysouth3291
    @dirtysouth3291 6 หลายเดือนก่อน

    Lookin forward to your AWS tutorial man!

  • @astroboy5946
    @astroboy5946 6 หลายเดือนก่อน

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

  • @sam-obisikechibueze3765
    @sam-obisikechibueze3765 6 หลายเดือนก่อน

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

  • @JoannaKokot-d3i
    @JoannaKokot-d3i 25 วันที่ผ่านมา

    Your PUT with desctructuring is not working because you did the wrong order there.
    The following code works:
    update(bookId: number, updatedBookFields: Partial): Book | undefined {
    const currentBook = books.find((book) => book.id === bookId);
    const updatedBook: Book = { ...currentBook, ...updatedBookFields };
    books[bookId - 1] = updatedBook;
    return updatedBook;
    }

  • @rosarioterranova
    @rosarioterranova 6 หลายเดือนก่อน

    Well done Pedro, NestJS is amazing!

  • @abdulrazaqharoon2733
    @abdulrazaqharoon2733 4 หลายเดือนก่อน

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

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

    which extention to hint the terminal u using ?

  • @dreamsachiever212
    @dreamsachiever212 6 หลายเดือนก่อน

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

  • @Peacemaker.404
    @Peacemaker.404 6 หลายเดือนก่อน

    Thank you very much pedro!

  • @lokeshkavisth
    @lokeshkavisth 6 หลายเดือนก่อน

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

  • @uafkhurram
    @uafkhurram 2 หลายเดือนก่อน

    please make mone videos on the Nestjs like authentication, authorization etc... biggener to advance projects. thanks in advance

  • @abdulrazaqharoon2733
    @abdulrazaqharoon2733 4 หลายเดือนก่อน

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

  • @shadmanfatin777
    @shadmanfatin777 2 หลายเดือนก่อน

    Great tutorial

  • @PattySpicy
    @PattySpicy 6 หลายเดือนก่อน

    Love it ! Thank you very muchhh

  • @MuzammalHussain-l7x
    @MuzammalHussain-l7x 4 หลายเดือนก่อน +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;
    }

  • @uzairhassan-y9b
    @uzairhassan-y9b 6 หลายเดือนก่อน

    Wow Thats great PedroTech

  • @tinolbhoyar4646
    @tinolbhoyar4646 3 หลายเดือนก่อน

    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

  • @julesruzindana-rukundo6254
    @julesruzindana-rukundo6254 6 หลายเดือนก่อน

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

  • @CydoEntis-dx7cl
    @CydoEntis-dx7cl 6 หลายเดือนก่อน +1

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

    • @PedroTechnologies
      @PedroTechnologies  6 หลายเดือนก่อน

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

  • @dreamsachiever212
    @dreamsachiever212 6 หลายเดือนก่อน

    thanks

  • @PsychoDude
    @PsychoDude 3 หลายเดือนก่อน

    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

  • @regilearn2138
    @regilearn2138 6 หลายเดือนก่อน +1

    Bro please don't delete comment threads.

  • @aymenbachiri-yh2hd
    @aymenbachiri-yh2hd 6 หลายเดือนก่อน

    thnks man

  • @clymbep3390
    @clymbep3390 6 หลายเดือนก่อน

    saudade dos videos :)

  • @zero3281
    @zero3281 6 หลายเดือนก่อน

    Next js when?

  • @Paradox_1
    @Paradox_1 5 หลายเดือนก่อน

    NextJs ?

  • @muhsinabbas1181
    @muhsinabbas1181 6 หลายเดือนก่อน

    🎉🎉🎉

  • @2gbeh
    @2gbeh 6 หลายเดือนก่อน +1

    E for Effort.

  • @zero3281
    @zero3281 6 หลายเดือนก่อน

    Wohoooooo

  • @godofwar8262
    @godofwar8262 6 หลายเดือนก่อน +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 6 หลายเดือนก่อน +4

      Man, why are you bothering a tutor for creating a series? We all love Pedro but there are thousands of videos on TH-cam 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 6 หลายเดือนก่อน

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

    • @2gbeh
      @2gbeh 6 หลายเดือนก่อน

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

  • @mariajegan2409
    @mariajegan2409 6 หลายเดือนก่อน

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

    • @tamaniphiri
      @tamaniphiri 6 หลายเดือนก่อน

      Good, that's you not us

    • @sjzz
      @sjzz 6 หลายเดือนก่อน

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

    • @youkickedmydog0
      @youkickedmydog0 6 หลายเดือนก่อน

      This is using express under the hold

    • @bugraotken
      @bugraotken 6 หลายเดือนก่อน +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 6 หลายเดือนก่อน

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

  • @hackmedia7755
    @hackmedia7755 2 หลายเดือนก่อน

    I had to do:
    sudo npm i -g @nestjs/cli
    Is that correct? Otherwise it says I don't have permission.