Framework VS Library 프레임워크와 라이브러리의 차이

프레임워크와 라이브러리 차이점

실행주체에 있어 차이점이 있다.

  • 라이브러리 : I call 라이브러리

    • 내가 필요할 때마다 라이브러리를 실행시킬수있다.
    • 내가 원하는 대로 수정이 가능하다.
    • 비유하자면 Ikea(아이키아)
  • 프레임워크 : Framework calls 내가 작성한 코드

    • 프레임워크가 내가 작성할 코드를 실행시킨다.
    • 프레임워크의 규칙을 잘 따라야지만 내 코드가 정상 작동한다.
    • 비유하자면 모델하우스
  • 공통점 : 프레임워크와 라이브러리 모두 누군가가 자주 발생하는 문제들을 해결하거나 더 좋은 코드를 위해 미리 만들어 둔 코드이다.

In summary
Frameworks and libraries are both code written by someone else that helps you perform some common tasks in a less verbose way.
A framework inverts the control of the program. It tells the developer what they need. A library doesn’t. The programmer calls the library where and when they need it.
The degree of freedom a library or framework gives the developer will dictate how “opinionated” it is.
By The Difference Between a Framework and a Library By freecodecamp




참고

Comments