코딩항해기

[JS] JQuery CDN 정리 본문

HTML CSS JS

[JS] JQuery CDN 정리

miniBcake 2024. 9. 17. 11:38

 

 

 

 

[JS] CDN (Content Delivery Network) (+ 문제점)

CDN (Content Delivery Network)간단하게 말하면 한 줄의 코드로 네트워크를 통해서 필요한 기술들을 가져와 사용할 수 있는 라이브러리라고 할 수 있다.CDN은 CDN은 콘텐츠를 분산하여 저장한 다음, 요청

minibcake.tistory.com

 

 

제이쿼리는 외부 라이브러리이므로 따로 파일을 import 해야한다. 가장 간단하게 할 수 있고 보편적으로 많이 사용되는 방식이 CDN 방식이다.

 

제이쿼리 공식 사이트에 들어가면 CDN을 제공하고 있는데,

https://releases.jquery.com/

 

jQuery CDN

jQuery CDN – Latest Stable Versions jQuery Core Showing the latest stable release in each major branch. See all versions of jQuery Core. jQuery 3.x jQuery 2.x jQuery 1.x jQuery Migrate jQuery UI Showing the latest stable release for the current and legac

releases.jquery.com

 

 

 

여기서 원하는 버전을 선택해서 CDN 스크립트 태그를 카피할 수도 있고,

(uncompressed는 비 압축버전이고, minified가 많이 사용된다.)

 

 

 

 

항상 제이쿼리 최신 버전으로 불러와지는 이 태그를 붙여넣어도 된다.

<script src="https://code.jquery.com/jquery-latest.min.js"></script>