You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now you're using CDNs for getting your Javascript libs, and CSS style modules; which is good for doing some quick work, or a small project. However, if you want to make something that's going to last, and get larger, it's best you have something that doesn't make use of CDNs. The advantage of not having a CDN is the ability to work offline (mostly), and the pages load faster (i.e. less requests per page load).
Both Bower and npm are dependency managers. Which ever one you use to manage the project is up to you. I have a preference of bower, but I also you npm as a backup. You can use them both in the same project as well.
The text was updated successfully, but these errors were encountered:
Summary
Right now you're using CDNs for getting your Javascript libs, and CSS style modules; which is good for doing some quick work, or a small project. However, if you want to make something that's going to last, and get larger, it's best you have something that doesn't make use of CDNs. The advantage of not having a CDN is the ability to work offline (mostly), and the pages load faster (i.e. less requests per page load).
Bower & npm
Both Bower and npm are dependency managers. Which ever one you use to manage the project is up to you. I have a preference of bower, but I also you npm as a backup. You can use them both in the same project as well.
The text was updated successfully, but these errors were encountered: