For further actions, you may consider blocking this person and/or reporting abuse
This community will be migrating to a dedicated subforem in the near future. We are excited to announce a new take on the CodeNewbie Community soon! Email support@forem.com if you have any questions.
Great article Tyler 🥂
Didn’t quite understand
package-lock.json, please shed more light on it.package-lock.jsonis a lot to take in for sure 😅package-lock.jsonis like an "Approved versions" list of the files being used inpackage.json, as well as extending to any packages used by packages you've installed inpackage.json. Everything inpackage-lock.jsonwill be an exact version number, which is helpful for deploying to production so that you know you won't get any bugs from a mismatched version being installed.The answer on this stack overflow question goes into more detail about the role
package-lockplays, but if you have further questions feel free to ask! Hopefully this helps clear things up at least a little bit more!Thanks this helps 🙂