DEV Community

Discussion on: What is the importance of understanding libraries and frameworks?

Collapse
 
anpos231 profile image
anpos231
  • Library - A set of classes/functions to ease development, for example: lodash, jQuery, React (React itself is just a set of functions and classes).

  • Framework - A collection of ideas and libraries to make up the structure for your application. These can often include authored libraries/code to fill up the gaps. Examples: Next.js, Ember.js, react-create-app (While react itself is just an individual library, react-create-app is a collection of many different packages and ready to use configurations to make development much easier)