jQuery 다운로드
jQuery 다운로드
여러 브라우저에서 안정적으로 이용하려면 jQuery 추천버젼을 사용을 권장합니다.
jQuery 는 두개의 버젼으로 이루어져 있습니다.
- minified versions
- 압축이 되어 있지 않아 packed versions 보다는 사이즈가 크지만, 압축을 푸는 과정이 없어 빠르게 실행이 가능한 버젼입니다.
- packed versions
- packed versions 은 minified versions 과는 다르게 압축이 되어 있어, 클라이언트에서 실행시에 압축해제 과정이 있어 minified versions 보다는 실행이 느립니다.
Current Release
문서
API Reference, html 파일형식으로 zip압축되어 있습니다.
Past Releases
- 1.3.1 (Release Notes)
Minified, Uncompressed
Documentation: Visual Studio
- 1.3 (Release Notes)
Minified, Uncompressed
Documentation: Visual Studio
- 1.2.6 (Release Notes)
Minified, Packed, Uncompressed
Documentation: Visual Studio
- 1.2.5 (Release Notes)
Minified, Packed, Uncompressed
- 1.2.4 (Release Notes)
Minified, Packed, Uncompressed
- 1.2.3 (Release Notes)
Minified, Packed, Uncompressed
- 1.2.2 (Release Notes)
Minified, Packed, Uncompressed
- 1.2.1 (Release Notes)
Minified, Packed, Uncompressed
- 1.2 (Release Notes)
Minified, Packed, Uncompressed
- 1.1.4
Compressed, Uncompressed
- 1.1.3.1
Compressed, Uncompressed
- 1.1.3
Compressed, Uncompressed
- 1.1.2
Compressed, Uncompressed
- 1.1.1
Compressed, Uncompressed
- 1.1
Compressed, Uncompressed
- 1.0.4
Compressed, Uncompressed
- 1.0.3
Compressed, club penguin, Uncompressed
- 1.0.2
Compressed, Uncompressed
- 1.0.1
Compressed, Uncompressed
- 1.0
Compressed
Nightly Builds
서브버젼 저장소에 접근권한이 없는 사람, 저장소로 부터 파일을 카피하여 본인이 직접빌드를 원하지 않은 사람들이 작업하여 서브버젼에 올려놓은 소스코드는 야간에 빌드과정을 거쳐서 만들어 집니다.
The nightly files 은 여기 (http://code.jquery.com/nightlies/) 에서 이용할 수 있습니다. 해당 디렉토리안에 아래와 같은 파일이 있습니다 :
Subversion (SVN)
- jQuery 는 SVN 이라는 최근기술을 가지고 온라인상에서 유지관리가 되고 있습니다. 만약에 jQuery 의 더욱더 최근 버젼을 받고싶으면, nightly builds 을 이용하십시요.
- 아래와 같은 양식으로 연결하시면 jQuery의 다른버젼을 이용할 수 있습니다 :
jQuery 아래의 컴포넌트가 설치되어 있어야 빌드가 가능합니다 :
- A build system (either
make
or ant
works):
- make: Available on most Unix-based system (Unix, BSD, OSX, Cygwin)
- ant: Available on any platform with JDK and ANT installed
- java: A copy of Java, version 1.4.0 or later
Build 과정
make or ant 를 이용해서 빌드를 합니다.처음에 jQuery 디렉토리를 이동하면 6개의 디렉토리가 있습니다. (jquery
, plugins
, qunit
, themes
, tools,
ui
).
make 를 이용해서 JQuery 만들기:
- make 를 이용해서 jQuery 만들기 : make
- jquery.js, jquery.pack.js, and jquery.lite.js 가 대상 디렉토리에 만들어 집니다.
- cat.xml and index.xml 가 docs 디렉토리에 만들어 집니다.
- test 디렉토리안에 tests 가 구축됩니다.
- To just build docs:
make docs
- To just build packed jQuery:
make pack
- To just build tests:
make test
ant 를 이용해서 jQuery 만들기:
- To create jQuery:
ant
- jquery.js, jquery.pack.js, and jquery.lite.js 가 대상 디렉토리에 만들어 집니다.
- cat.xml and index.xml 가 docs 디렉토리에 만들어 집니다.
- test 디렉토리안에 tests 가 구축됩니다.
- To just build docs:
ant docs
- To just build packed jQuery:
ant pack
- To just build tests:
ant test