Release: update release dependencies
[jquery.git] / README.md
blob9e5b130c4322a0042b26957c5e25a367f33f6c64
1 [jQuery](https://jquery.com/) — New Wave JavaScript
2 ==================================================
4 Contribution Guides
5 --------------------------------------
7 In the spirit of open source software development, jQuery always encourages community code contribution. To help you get started and before you jump into writing code, be sure to read these important contribution guidelines thoroughly:
9 1. [Getting Involved](https://contribute.jquery.org/)
10 2. [Core Style Guide](https://contribute.jquery.org/style-guide/js/)
11 3. [Writing Code for jQuery Foundation Projects](https://contribute.jquery.org/code/)
14 Environments in which to use jQuery
15 --------------------------------------
17 - [Browser support](https://jquery.com/browser-support/)
18 - jQuery also supports Node, browser extensions, and other non-browser environments.
21 What you need to build your own jQuery
22 --------------------------------------
24 In order to build jQuery, you need to have the latest Node.js/npm and git 1.7 or later. Earlier versions might work, but are not supported.
26 For Windows, you have to download and install [git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/en/download/).
28 OS X users should install [Homebrew](http://brew.sh/). Once Homebrew is installed, run `brew install git` to install git,
29 and `brew install node` to install Node.js.
31 Linux/BSD users should use their appropriate package managers to install git and Node.js, or build from source
32 if you swing that way. Easy-peasy.
35 How to build your own jQuery
36 ----------------------------
38 Clone a copy of the main jQuery git repo by running:
40 ```bash
41 git clone git://github.com/jquery/jquery.git
42 ```
44 Enter the jquery directory and run the build script:
45 ```bash
46 cd jquery && npm run build
47 ```
48 The built version of jQuery will be put in the `dist/` subdirectory, along with the minified copy and associated map file.
50 If you want to create custom build or help with jQuery development, it would be better to install [grunt command line interface](https://github.com/gruntjs/grunt-cli) as a global package:
52 ```
53 npm install -g grunt-cli
54 ```
55 Make sure you have `grunt` installed by testing:
56 ```
57 grunt -V
58 ```
60 Now by running the `grunt` command, in the jquery directory, you can build a full version of jQuery, just like with an `npm run build` command:
61 ```
62 grunt
63 ```
65 There are many other tasks available for jQuery Core:
66 ```
67 grunt -help
68 ```
70 ### Modules
72 Special builds can be created that exclude subsets of jQuery functionality.
73 This allows for smaller custom builds when the builder is certain that those parts of jQuery are not being used.
74 For example, an app that only used JSONP for `$.ajax()` and did not need to calculate offsets or positions of elements could exclude the offset and ajax/xhr modules.
76 Any module may be excluded except for `core`, and `selector`. To exclude a module, pass its path relative to the `src` folder (without the `.js` extension).
78 Some example modules that can be excluded are:
80 - **ajax**: All AJAX functionality: `$.ajax()`, `$.get()`, `$.post()`, `$.ajaxSetup()`, `.load()`, transports, and ajax event shorthands such as `.ajaxStart()`.
81 - **ajax/xhr**: The XMLHTTPRequest AJAX transport only.
82 - **ajax/script**: The `<script>` AJAX transport only; used to retrieve scripts.
83 - **ajax/jsonp**: The JSONP AJAX transport only; depends on the ajax/script transport.
84 - **css**: The `.css()` method. Also removes **all** modules depending on css (including **effects**, **dimensions**, and **offset**).
85 - **css/showHide**:  Non-animated `.show()`, `.hide()` and `.toggle()`; can be excluded if you use classes or explicit `.css()` calls to set the `display` property. Also removes the **effects** module.
86 - **deprecated**: Methods documented as deprecated but not yet removed.
87 - **dimensions**: The `.width()` and `.height()` methods, including `inner-` and `outer-` variations.
88 - **effects**: The `.animate()` method and its shorthands such as `.slideUp()` or `.hide("slow")`.
89 - **event**: The `.on()` and `.off()` methods and all event functionality. Also removes `event/alias`.
90 - **event/alias**: All event attaching/triggering shorthands like `.click()` or `.mouseover()`.
91 - **event/focusin**: Cross-browser support for the focusin and focusout events.
92 - **event/trigger**: The `.trigger()` and `.triggerHandler()` methods. Used by **alias** and **focusin** modules.
93 - **offset**: The `.offset()`, `.position()`, `.offsetParent()`, `.scrollLeft()`, and `.scrollTop()` methods.
94 - **wrap**: The `.wrap()`, `.wrapAll()`, `.wrapInner()`, and `.unwrap()` methods.
95 - **core/ready**: Exclude the ready module if you place your scripts at the end of the body. Any ready callbacks bound with `jQuery()` will simply be called immediately. However, `jQuery(document).ready()` will not be a function and `.on("ready", ...)` or similar will not be triggered.
96 - **deferred**: Exclude jQuery.Deferred. This also removes jQuery.Callbacks. *Note* that modules that depend on jQuery.Deferred(AJAX, effects, core/ready) will not be removed and will still expect jQuery.Deferred to be there. Include your own jQuery.Deferred implementation or exclude those modules as well (`grunt custom:-deferred,-ajax,-effects,-core/ready`).
97 - **exports/global**: Exclude the attachment of global jQuery variables ($ and jQuery) to the window.
98 - **exports/amd**: Exclude the AMD definition.
100 As a special case, you may also replace Sizzle by using a special flag `grunt custom:-sizzle`.
102 - **sizzle**: The Sizzle selector engine. When this module is excluded, it is replaced by a rudimentary selector engine based on the browser's `querySelectorAll` method that does not support jQuery selector extensions or enhanced semantics. See the [selector-native.js](https://github.com/jquery/jquery/blob/master/src/selector-native.js) file for details.
104 *Note*: Excluding Sizzle will also exclude all jQuery selector extensions (such as `effects/animatedSelector` and `css/hiddenVisibleSelectors`).
106 The build process shows a message for each dependent module it excludes or includes.
108 ##### AMD name
110 As an option, you can set the module name for jQuery's AMD definition. By default, it is set to "jquery", which plays nicely with plugins and third-party libraries, but there may be cases where you'd like to change this. Simply set the `"amd"` option:
112 ```bash
113 grunt custom --amd="custom-name"
116 Or, to define anonymously, set the name to an empty string.
118 ```bash
119 grunt custom --amd=""
122 #### Custom Build Examples
124 To create a custom build, first check out the version:
126 ```bash
127 git pull; git checkout VERSION
130 Where VERSION is the version you want to customize. Then, make sure all Node dependencies are installed:
132 ```bash
133 npm install
136 Create the custom build using the `grunt custom` option, listing the modules to be excluded.
138 Exclude all **ajax** functionality:
140 ```bash
141 grunt custom:-ajax
144 Excluding **css** removes modules depending on CSS: **effects**, **offset**, **dimensions**.
146 ```bash
147 grunt custom:-css
150 Exclude a bunch of modules:
152 ```bash
153 grunt custom:-ajax,-css,-deprecated,-dimensions,-effects,-event/alias,-offset,-wrap
156 For questions or requests regarding custom builds, please start a thread on the [Developing jQuery Core](https://forum.jquery.com/developing-jquery-core) section of the forum. Due to the combinatorics and custom nature of these builds, they are not regularly tested in jQuery's unit test process. The non-Sizzle selector engine currently does not pass unit tests because it is missing too much essential functionality.
158 Running the Unit Tests
159 --------------------------------------
161 Make sure you have the necessary dependencies:
163 ```bash
164 npm install
167 Start `grunt watch` or `npm start` to auto-build jQuery as you work:
169 ```bash
170 grunt watch
174 Run the unit tests with a local server that supports PHP. Ensure that you run the site from the root directory, not the "test" directory. No database is required. Pre-configured php local servers are available for Windows and Mac. Here are some options:
176 - Windows: [WAMP download](http://www.wampserver.com/en/)
177 - Mac: [MAMP download](https://www.mamp.info/en/downloads/)
178 - Linux: [Setting up LAMP](https://www.linux.com/learn/tutorials/288158-easy-lamp-server-installation)
179 - [Mongoose (most platforms)](https://code.google.com/p/mongoose/)
184 Building to a different directory
185 ---------------------------------
187 To copy the built jQuery files from `/dist` to another directory:
189 ```bash
190 grunt && grunt dist:/path/to/special/location/
192 With this example, the output files would be:
194 ```bash
195 /path/to/special/location/jquery.js
196 /path/to/special/location/jquery.min.js
199 To add a permanent copy destination, create a file in `dist/` called ".destination.json". Inside the file, paste and customize the following:
201 ```json
204   "/Absolute/path/to/other/destination": true
208 Additionally, both methods can be combined.
212 Essential Git
213 -------------
215 As the source code is handled by the Git version control system, it's useful to know some features used.
217 ### Cleaning ###
219 If you want to purge your working directory back to the status of upstream, the following commands can be used (remember everything you've worked on is gone after these):
221 ```bash
222 git reset --hard upstream/master
223 git clean -fdx
226 ### Rebasing ###
228 For feature/topic branches, you should always use the `--rebase` flag to `git pull`, or if you are usually handling many temporary "to be in a github pull request" branches, run the following to automate this:
230 ```bash
231 git config branch.autosetuprebase local
233 (see `man git-config` for more information)
235 ### Handling merge conflicts ###
237 If you're getting merge conflicts when merging, instead of editing the conflicted files manually, you can use the feature
238 `git mergetool`. Even though the default tool `xxdiff` looks awful/old, it's rather useful.
240 The following are some commands that can be used there:
242 * `Ctrl + Alt + M` - automerge as much as possible
243 * `b` - jump to next merge conflict
244 * `s` - change the order of the conflicted lines
245 * `u` - undo a merge
246 * `left mouse button` - mark a block to be the winner
247 * `middle mouse button` - mark a line to be the winner
248 * `Ctrl + S` - save
249 * `Ctrl + Q` - quit
251 [QUnit](https://api.qunitjs.com) Reference
252 -----------------
254 ### Test methods ###
256 ```js
257 expect( numAssertions );
258 stop();
259 start();
263 *Note*: QUnit's eventual addition of an argument to stop/start is ignored in this test suite so that start and stop can be passed as callbacks without worrying about their parameters.
265 ### Test assertions ###
268 ```js
269 ok( value, [message] );
270 equal( actual, expected, [message] );
271 notEqual( actual, expected, [message] );
272 deepEqual( actual, expected, [message] );
273 notDeepEqual( actual, expected, [message] );
274 strictEqual( actual, expected, [message] );
275 notStrictEqual( actual, expected, [message] );
276 throws( block, [expected], [message] );
280 Test Suite Convenience Methods Reference (See [test/data/testinit.js](https://github.com/jquery/jquery/blob/master/test/data/testinit.js))
281 ------------------------------
283 ### Returns an array of elements with the given IDs ###
285 ```js
286 q( ... );
289 Example:
291 ```js
292 q("main", "foo", "bar");
294 => [ div#main, span#foo, input#bar ]
297 ### Asserts that a selection matches the given IDs ###
299 ```js
300 t( testName, selector, [ "array", "of", "ids" ] );
303 Example:
305 ```js
306 t("Check for something", "//[a]", ["foo", "bar"]);
311 ### Fires a native DOM event without going through jQuery ###
313 ```js
314 fireNative( node, eventType )
317 Example:
319 ```js
320 fireNative( jQuery("#elem")[0], "click" );
323 ### Add random number to url to stop caching ###
325 ```js
326 url( "some/url.php" );
329 Example:
331 ```js
332 url("data/test.html");
334 => "data/test.html?10538358428943"
337 url("data/test.php?foo=bar");
339 => "data/test.php?foo=bar&10538358345554"
343 ### Run tests in an iframe ###
345 Some tests may require a document other than the standard test fixture, and
346 these can be run in a separate iframe. The actual test code and assertions
347 remain in jQuery's main test files; only the minimal test fixture markup
348 and setup code should be placed in the iframe file.
350 ```js
351 testIframe( testName, fileName,
352   function testCallback(
353       assert, jQuery, window, document,
354           [ additional args ] ) {
355         ...
356   } );
359 This loads a page, constructing a url with fileName `"./data/" + fileName`.
360 The iframed page determines when the callback occurs in the test by
361 including the "/test/data/iframeTest.js" script and calling
362 `startIframeTest( [ additional args ] )` when appropriate. Often this
363 will be after either document ready or `window.onload` fires.
365 The `testCallback` receives the QUnit `assert` object created by `testIframe`
366 for this test, followed by the global `jQuery`, `window`, and `document` from
367 the iframe. If the iframe code passes any arguments to `startIframeTest`,
368 they follow the `document` argument.
371 Questions?
372 ----------
374 If you have any questions, please feel free to ask on the
375 [Developing jQuery Core forum](https://forum.jquery.com/developing-jquery-core) or in #jquery on irc.freenode.net.