Package.json and Package-lock.json in Angular [MOST ASKED INTERVIEW CONCEPT]

Sdílet
Vložit
  • čas přidán 22. 08. 2024

Komentáře • 29

  • @gandharva1000
    @gandharva1000 Před rokem +1

    Very well explained.. thank you

  • @BaluKompalli
    @BaluKompalli Před 3 lety +1

    Very useful madam, actually i hate angular configuration files due to list of many dependancies. But after this explanation i got clarity on how to use and how to read

  • @shubhangi7868
    @shubhangi7868 Před rokem +1

    so awesome

  • @naturewithme...4692
    @naturewithme...4692 Před 4 lety +3

    Thanks for this video it very clear now.

    • @CodeDecode
      @CodeDecode  Před 4 lety

      Thanks for the nice words. Please let me know in case you need any of such topics to be covered in angular.

    • @naturewithme...4692
      @naturewithme...4692 Před 4 lety +1

      @@CodeDecode yeah sure...Subscribed :) please can you make same kind of videos for REACT ???

  • @debjeetnandi6145
    @debjeetnandi6145 Před 2 lety +1

    Beautifully explained!

  • @ubaidshowkat91
    @ubaidshowkat91 Před 4 lety +2

    Liked the part that explains package.json but the explanation of package-lock.json is very confusing.

    • @CodeDecode
      @CodeDecode  Před 4 lety +1

      No worries. Please let me know what's confusing. I will try to clear your doubts. You can ask me what confuses you in package lock file.

    • @santhiyam9495
      @santhiyam9495 Před 3 lety

      @@CodeDecode hi In my application(using nodejs) I have flaws in some modules so I have to upgrade it.these modules were in package-lock.json. I have tried to upgrade using the cmnd,npm update lodash(module name) but it didn't get updated.pls help how to upgrade those modules.

  • @gowthamraj3652
    @gowthamraj3652 Před 4 lety +1

    Your Explanation is very good really useful for me... thanks

    • @CodeDecode
      @CodeDecode  Před 4 lety

      Pleasure is all mine. I will keep posting such videos. Let me know in comments section if you need any other topic to be covered.

    • @ChrisTarasovs
      @ChrisTarasovs Před 4 lety +1

      True, good explanation.

    • @CodeDecode
      @CodeDecode  Před 4 lety

      Thanks :)

    • @jamuna5181
      @jamuna5181 Před 3 lety

      @@CodeDecode can you please make a video of node_modules and what the important libraries in it.

  • @erandaweerasingha404
    @erandaweerasingha404 Před 3 lety +1

    very helpful . thank you

  • @salarkazazi7584
    @salarkazazi7584 Před 3 lety +1

    Thank you so much

  • @AbhinayKumarBAK
    @AbhinayKumarBAK Před 2 lety +1

    that's right on point and very understandable way .. thanks for the video ..!
    Can you please make more ... ..✨❣

    • @CodeDecode
      @CodeDecode  Před 2 lety

      Thanks Abhinay. Sure 🙂👍👍

  • @anjaneyuluaavula7422
    @anjaneyuluaavula7422 Před 3 lety

    Hi. Great video and thank you. Is it possible to update packages not in package.json and that are only in package-lock.json.Im having a situation where in i have to update packages in packaga-lock.json. Thank you

  • @jayakumar2927
    @jayakumar2927 Před 4 lety +1

    What is use of package.json

    • @CodeDecode
      @CodeDecode  Před 4 lety +4

      In simple words, package. Json file contains all the packages required for building your application. For example if your project needs bootstrap module then just specify bootstrap with version in this file and run npm install or update, you will get all the modules of that package to use in your project. At the same time if you want to upgrade the version of bootstrap, just change the version in this file and run npm update or install and you will get the updated modules of bootstrap, (If you are from Java side,) it's a bit similar to pom.xml file.
      If you are still in doubt, please comment below I will make separate video on this.