ReactJS: Understanding package.json and Package-lock.json.
Hello everyone!
In this article, we will understand package.json and Package-lock.json. We will also cover important topics such as tilde(~) and caret (^) in our package.json file.
What is package.json?
package.json is a metadata file in a Node.js project that describes the project's dependencies, scripts, configuration, and other details.
It typically contains information about the project such as its name, version, author, and license. It also lists the project's dependencies on other Node.js packages, along with their version numbers, so that these dependencies can be automatically installed when the project is set up or updated.
The package.json file is typically located in the root directory of a Node.js project and is automatically generated when you run npm init command to initialize a new project. You can also manually create and modify this file to manage your project's dependencies and configuration.
There are two ways of generating a package.json file - using npm or by using yarn:
For using npm, run npm init on your terminal
For using yarn, run yarn init on your terminal.
What is the purpose of package.json file in Node.js?
Here are some of the main purposes of the package.json file in Node.js:
Compatibility: The package.json file can specify the Node.js version range that the project is compatible with, which can help to ensure that the project runs correctly on different versions of Node.js.
tilde(~) and caret(^) in package.json
Npm versions are written in 0.0.0 formats, where the first number (from left) stands for the major release, the second for the minor release and the third for the latest patch release of this particular version.
Using a tilde (~) in an NPM package.json
Using a tilde (~) before the version number of the dependency package means that we will accept only further patch releases from the version specified but will not receive any major or minor release if we were to install or update our dependency package.
Example: Using tilde (~) to update Express
"dependencies": {
"express": "~4.17.0"
},
If we try to update our npm package, the latest package won’t be installed but only further patch releases for 4.17.0 will be installed if available because we had used tilde (~) while specifying our dependency.
Recommended by LinkedIn
Using a caret (^) in an NPM package.json
Using a caret (^) before the version number of the dependency package means that we can accept both patch and minor releases from the version specified but will not receive any major release if we were to install or update our dependency package.
Example : Using caret (^) to update Axios
Let’s assume we have Axios installed in our system. Now again, at the time of writing version 1.3.4 is the latest version while we have version 1.2.0 installed in our node project. Our package.json must look something like this.
"dependencies": {
"axios": "^1.2.0"
},
If we update our package, we will find that the package has been updated to 1.3.4 or whatever the latest version is whose major version number is 1.
What is package-lock.json?
package-lock.json is a file that is automatically generated by npm when a package is installed. It records the exact version of every installed dependency, including its sub-dependencies and their versions.
package-lock.json is created by npm when you run the npm install command. It contains a detailed list of all the packages, their dependencies, their specific version numbers, and locations (usually mentioned in the package.json file)
The purpose of package-lock.json is to ensure that the same dependencies are installed consistently across different environments, such as development and production environments.
If you are working in a team, it is important to commit package-lock.json to your version control system along with your code so that all team members have the same dependencies installed. When another developer clones the project, they can simply run npm-install to install the same packages and versions specified in the package-lock.json file.
You must have observed that the package-lock.json code is a bit longer than the package.json file.
Why is that so?
Well, because while package.json shows you a particular property and its version, package-lock.json would show even the dependency of that particular property, the sub-dependencies etc. Thus, it locks the package data so deeply that you would not have to worry about any dependencies being missed out of sight.
Conclusion
The package.json file provides information about the project and its dependencies, and can be manually edited to update dependencies or add scripts. The package-lock.json file, on the other hand, is automatically generated and contains a detailed description of the entire dependency tree, including the exact versions of each dependency and any sub-dependencies.
To ensure consistency and reproducibility across different environments, both files should be committed to version control, and developers should be careful not to modify the package-lock.json file directly.
By using package.json and package-lock.json correctly, developers can ensure that their Node.js projects are reliable, consistent, and easy to manage. Whether you're working on a small personal project or a large-scale enterprise application, understanding these files is crucial for success.
Using tilde (~) and caret (^) while mentioning the package version number in package.json, developers can save themselves from breaking their code to some extent while updating installed node packages.
I hope you have learned something new by reading this blog. Thank you so much for your valuable time.
Happy Coding! Happy Learning!!
Excellent write-up Tejas 👍 Would like to bring to your notice gluestack-ui, a Universal UI library for React, React Native, Next.js and Expo.
Front-end Developer | MERN Stack Aspirant | Exploring RPA | UiPath | Coding | Automation
1yGreat content brother 👏💯😊