Devdeep Ghosh

Removing NPM Packages and Dependencies in Node.js: npm uninstall

Node Package Manager (NPM) is a package manager for Node.js. It provides many commands to manage our dependencies or packages inside a Node.js project. Packages and dependencies are external modules that make our coding life easy by letting us implement additional functionalities. We can install a package using npm and import it inside a project

Removing NPM Packages and Dependencies in Node.js: npm uninstall Read More »

Difference between tilde(~) and caret(^) in package.json

When working on a Node.js project we always had a file named package.json. This package.json is the core of a Node.js project. It keeps track of important metadata, dependencies, scripts, and other functional attributes related to the project. When installing any dependencies in any Node project, the package.json keeps the name of the package as

Difference between tilde(~) and caret(^) in package.json Read More »