Guest User

Untitled

a guest
Jan 22nd, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. ### Why do package managers exist for front-end developers building web apps?
  2. Package managers prevent coupling your code base with library code bases.
  3. If somebody want's to work on your code they don't have to seperately install each individual library that you're using.
  4.  
  5. ### What is npm and what does it allow developers to do?
  6. Node Package Manager is an enormous software registry with over 800,000 code packages.
  7. It allows open-source developers to share software. NPM is free to use and only requires a command line client such as Terminal
  8.  
  9. ### Describe what a 'dependency' is, and the difference between a devDependency and a regular dependency. Give an example of each.
  10. Sometimes when you install programs, they rely on other programs to work. These other programs are called dependencies.
  11. The difference between dependencies and devDependencies, is that devDependencies are only required during development, while dependencies are also required at runtime.
Add Comment
Please, Sign In to add comment