Posts

Showing posts with the label NPM

NPM Semantic Versioning Syntax

Image
If you are here to read this post, you must be a JavaScript programmer. If you are, you are welcome and even if you are not, that's okay. There are other articles to interest you on this site. So, moving on, this post is all about today's client-side frameworks, be it react or angular. If you have used any of these two in your development, you must be aware of npm's packages. We will learn about how the version is maintained for these npm packages. The first term you need to be familiar is Semantic Versioning or SemVer , let's take a look at what it is:

How To Delete Node_Modules Folder : NPM

Image
Ever used NPM(Node package manager) to install packages for your client side applications? If yes then you must have noticed node_modules folder that is created once you run npm install . Did you ever try to delete that folder, with most of the cases you will be stopped by a windows message. Let's see what's that and what's workaround for that.