npm and Parcel
Learn how to use npm and Parcel for managing packages and bundling our code for the web.
We'll cover the following...
Node package manager
We can include remotely hosted JavaScript libraries like React in our HTML file as a script module. However, as our application grows, this method becomes inefficient. To deal with ...