April 2018
Beginner
226 pages
4h 47m
English
We have already studied package.json in the preceding section. To summarize package.json, it is a registry that maintains information about the application such as name, author, test script, and so on, and manages the dependent modules required for production and developmental levels. Recently, NPM provided an update that also produces package-lock.json files initially during package updates or installation.
A glimpse of package-lock.json is provided in the following screenshot:

The package-lock.json file intends to specify all the records of packages that were updated with respect to time. You ...
Read now
Unlock full access