To subscribe to the channel: kzbin.info/door/mOpHGj4JRWCdXhllVTZCVw
@ManishKumarGupta-h2y3 ай бұрын
Finally found a video which actually teaches the different between them.
@TheCodeCreative3 ай бұрын
Glad to hear!
@shoummorauth11 ай бұрын
Best video to learn about this topic. You are a genius man!
@TheCodeCreative11 ай бұрын
Glad it was helpful!
@TayoEXE Жыл бұрын
I like that you experimented and tested various scenarios to show us how it's working. My understanding of this topic just leveled up a bit. Thanks!
@TheCodeCreative Жыл бұрын
Great to hear that, thanks!
@icychains2410 ай бұрын
So grateful for this. Thanks for showing various permutations and how they work!
@TheCodeCreative10 ай бұрын
Glad it was helpful!
@arunsr280110 ай бұрын
best video on this topic.4:17 i was thinking the same and you brought that up
@TheCodeCreative10 ай бұрын
👍🏻👍🏻👍🏻
@samerali2702 жыл бұрын
I'm very glad that I came across this amazing channel! Your informal explanation makes it very easy for anybody to understand and learn new confusing concepts!
@TheCodeCreative2 жыл бұрын
Glad to hear! 👍🏻
@melvinwilson454111 ай бұрын
Very helpful video, thank you!
@TheCodeCreative11 ай бұрын
Glad it was helpful!
@yourwelcomematt Жыл бұрын
Such a good explanation, thank you for clearing this all up for me!
@TheCodeCreative Жыл бұрын
thanks for watching!
@aristosxanthus5142 жыл бұрын
Good explanation. I like your examples because they demonstrated semantic versioning and why it's important to have package-lock.json
@TheCodeCreative2 жыл бұрын
Thanks for watching!
@LibraryOfTheOligarchs Жыл бұрын
@TheCodeCreative can you do some peer-dependencies explanations, and ways to modify/change peer-dependencies. (e.g. "what exactly is a 'peer' ? ")
@subhashgn17752 жыл бұрын
Very detailed and clear explanation. Thank you.🤝
@TheCodeCreative2 жыл бұрын
Glad it was helpful!
@TheCodeCreative3 жыл бұрын
Join "The Code Creative Community" group on Facebook: facebook.com/groups/thecodecreative
@TheCodeCreative3 жыл бұрын
Download my FREE "Google Search Secrets for Developers" Cheat Sheet: store.thecodecreative.com/google-secrets-cheat-sheet
@stephenhu1187 ай бұрын
Why doesn't npm only allow fixed version from the beginning? It allows semver for flexibility and later on realised that package-lock.json is needed to pin the versions down. What a mess... Anyway, your video is still educational, do you have any suggestion for best practice?
@vishwanatht35372 жыл бұрын
tanq sir explaining advance Javascript topics do more videos on Javascript topics
@TheCodeCreative2 жыл бұрын
Will do, thanks!
@ubongeffanga5712 жыл бұрын
Nice video 👍 Where's the link to the Google cheatsheet?
@TheCodeCreative2 жыл бұрын
Thanks! Here's the link: store.thecodecreative.com/google-secrets-cheat-sheet
@ertugrulgurler9901 Жыл бұрын
Thank you
@TheCodeCreative Жыл бұрын
Welcome!
@JoeBoo5322 жыл бұрын
Thanks for a great explanation on package-lock.json! :D Just a small question, is it ok to delete package-lock.json?? 🧐
@TheCodeCreative2 жыл бұрын
Thanks Joe! You wouldn't want to delete package-lock.json since you could wind up with different versions of your dependencies after running npm install.
@JoeBoo5322 жыл бұрын
@@TheCodeCreative what would happens if you accidentally delete it? what would be best solution to resolve that etc?
@TheCodeCreative2 жыл бұрын
@@JoeBoo532 That would be a good reason to commit it to source control!
@AnsgarSteinkamp2 жыл бұрын
In case you want to update EVERYTHING to the latest (minor/patch) version, there is no problem with deleting package-lock.json. Or am I wrong?