6. Dependencies and DevDependencies


  • Both dependencies and DevDependencies are packages or library that an application relies in order to function correctly
  • Both are located inside Package.json file
  • Both dependencies and devDependencies are used for development purposes
  • Dependencies are required for the application to run correctly in production 
  • DevDependencies are only used during development and testing.


Comments