Update node dependencies (sans jsdom, qunit, and sinon)
[jquery.git] / README.md
blob9d3e6262ded809e257f3c902a4aea563c8e9e7ea
1 [jQuery](https://jquery.com/) — New Wave JavaScript
2 ==================================================
4 [![FOSSA Status](https://app.fossa.io/api/projects/git%2Bgithub.com%2Fjquery%2Fjquery.svg?type=shield)](https://app.fossa.io/projects/git%2Bgithub.com%2Fjquery%2Fjquery?ref=badge_shield)
6 Contribution Guides
7 --------------------------------------
9 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:
11 1. [Getting Involved](https://contribute.jquery.org/)
12 2. [Core Style Guide](https://contribute.jquery.org/style-guide/js/)
13 3. [Writing Code for jQuery Foundation Projects](https://contribute.jquery.org/code/)
16 Environments in which to use jQuery
17 --------------------------------------
19 - [Browser support](https://jquery.com/browser-support/)
20 - jQuery also supports Node, browser extensions, and other non-browser environments.
23 What you need to build your own jQuery
24 --------------------------------------
26 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.
28 For Windows, you have to download and install [git](https://git-scm.com/downloads) and [Node.js](https://nodejs.org/en/download/).
30 OS X users should install [Homebrew](http://brew.sh/). Once Homebrew is installed, run `brew install git` to install git,
31 and `brew install node` to install Node.js.
33 Linux/BSD users should use their appropriate package managers to install git and Node.js, or build from source
34 if you swing that way. Easy-peasy.
37 How to build your own jQuery
38 ----------------------------
40 Clone a copy of the main jQuery git repo by running:
42 ```bash
43 git clone git://github.com/jquery/jquery.git
44 ```
46 Enter the jquery directory and run the build script:
47 ```bash
48 cd jquery && npm run build
49 ```
50 The built version of jQuery will be put in the `dist/` subdirectory, along with the minified copy and associated map file.
52 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:
54 ```
55 npm install -g grunt-cli
56 ```
57 Make sure you have `grunt` installed by testing:
58 ```
59 grunt -V
60 ```
62 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:
63 ```
64 grunt
65 ```
67 There are many other tasks available for jQuery Core:
68 ```
69 grunt -help
70 ```
72 ### Modules
74 Special builds can be created that exclude subsets of jQuery functionality.
75 This allows for smaller custom builds when the builder is certain that those parts of jQuery are not being used.
76 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.
78 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).
80 Some example modules that can be excluded are:
82 - **ajax**: All AJAX functionality: `$.ajax()`, `$.get()`, `$.post()`, `$.ajaxSetup()`, `.load()`, transports, and ajax event shorthands such as `.ajaxStart()`.
83 - **ajax/xhr**: The XMLHTTPRequest AJAX transport only.
84 - **ajax/script**: The `<script>` AJAX transport only; used to retrieve scripts.
85 - **ajax/jsonp**: The JSONP AJAX transport only; depends on the ajax/script transport.
86 - **css**: The `.css()` method. Also removes **all** modules depending on css (including **effects**, **dimensions**, and **offset**).
87 - **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.
88 - **deprecated**: Methods documented as deprecated but not yet removed.
89 - **dimensions**: The `.width()` and `.height()` methods, including `inner-` and `outer-` variations.
90 - **effects**: The `.animate()` method and its shorthands such as `.slideUp()` or `.hide("slow")`.
91 - **event**: The `.on()` and `.off()` methods and all event functionality. Also removes `event/alias`.
92 - **event/alias**: All event attaching/triggering shorthands like `.click()` or `.mouseover()`.
93 - **event/focusin**: Cross-browser support for the focusin and focusout events.
94 - **event/trigger**: The `.trigger()` and `.triggerHandler()` methods. Used by **alias** and **focusin** modules.
95 - **offset**: The `.offset()`, `.position()`, `.offsetParent()`, `.scrollLeft()`, and `.scrollTop()` methods.
96 - **wrap**: The `.wrap()`, `.wrapAll()`, `.wrapInner()`, and `.unwrap()` methods.
97 - **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.
98 - **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`).
99 - **exports/global**: Exclude the attachment of global jQuery variables ($ and jQuery) to the window.
100 - **exports/amd**: Exclude the AMD definition.
102 As a special case, you may also replace Sizzle by using a special flag `grunt custom:-sizzle`.
104 - **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.
106 *Note*: Excluding Sizzle will also exclude all jQuery selector extensions (such as `effects/animatedSelector` and `css/hiddenVisibleSelectors`).
108 The build process shows a message for each dependent module it excludes or includes.
110 ##### AMD name
112 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:
114 ```bash
115 grunt custom --amd="custom-name"
118 Or, to define anonymously, set the name to an empty string.
120 ```bash
121 grunt custom --amd=""
124 #### Custom Build Examples
126 To create a custom build, first check out the version:
128 ```bash
129 git pull; git checkout VERSION
132 Where VERSION is the version you want to customize. Then, make sure all Node dependencies are installed:
134 ```bash
135 npm install
138 Create the custom build using the `grunt custom` option, listing the modules to be excluded.
140 Exclude all **ajax** functionality:
142 ```bash
143 grunt custom:-ajax
146 Excluding **css** removes modules depending on CSS: **effects**, **offset**, **dimensions**.
148 ```bash
149 grunt custom:-css
152 Exclude a bunch of modules:
154 ```bash
155 grunt custom:-ajax,-css,-deprecated,-dimensions,-effects,-event/alias,-offset,-wrap
158 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.
160 Running the Unit Tests
161 --------------------------------------
163 Make sure you have the necessary dependencies:
165 ```bash
166 npm install
169 Start `grunt watch` or `npm start` to auto-build jQuery as you work:
171 ```bash
172 grunt watch
176 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:
178 - Windows: [WAMP download](http://www.wampserver.com/en/)
179 - Mac: [MAMP download](https://www.mamp.info/en/downloads/)
180 - Linux: [Setting up LAMP](https://www.linux.com/learn/tutorials/288158-easy-lamp-server-installation)
181 - [Mongoose (most platforms)](https://code.google.com/p/mongoose/)
186 Building to a different directory
187 ---------------------------------
189 To copy the built jQuery files from `/dist` to another directory:
191 ```bash
192 grunt && grunt dist:/path/to/special/location/
194 With this example, the output files would be:
196 ```bash
197 /path/to/special/location/jquery.js
198 /path/to/special/location/jquery.min.js
201 To add a permanent copy destination, create a file in `dist/` called ".destination.json". Inside the file, paste and customize the following:
203 ```json
206   "/Absolute/path/to/other/destination": true
210 Additionally, both methods can be combined.
214 Essential Git
215 -------------
217 As the source code is handled by the Git version control system, it's useful to know some features used.
219 ### Cleaning ###
221 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):
223 ```bash
224 git reset --hard upstream/master
225 git clean -fdx
228 ### Rebasing ###
230 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:
232 ```bash
233 git config branch.autosetuprebase local
235 (see `man git-config` for more information)
237 ### Handling merge conflicts ###
239 If you're getting merge conflicts when merging, instead of editing the conflicted files manually, you can use the feature
240 `git mergetool`. Even though the default tool `xxdiff` looks awful/old, it's rather useful.
242 The following are some commands that can be used there:
244 * `Ctrl + Alt + M` - automerge as much as possible
245 * `b` - jump to next merge conflict
246 * `s` - change the order of the conflicted lines
247 * `u` - undo a merge
248 * `left mouse button` - mark a block to be the winner
249 * `middle mouse button` - mark a line to be the winner
250 * `Ctrl + S` - save
251 * `Ctrl + Q` - quit
253 [QUnit](https://api.qunitjs.com) Reference
254 -----------------
256 ### Test methods ###
258 ```js
259 expect( numAssertions );
260 stop();
261 start();
265 *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.
267 ### Test assertions ###
270 ```js
271 ok( value, [message] );
272 equal( actual, expected, [message] );
273 notEqual( actual, expected, [message] );
274 deepEqual( actual, expected, [message] );
275 notDeepEqual( actual, expected, [message] );
276 strictEqual( actual, expected, [message] );
277 notStrictEqual( actual, expected, [message] );
278 throws( block, [expected], [message] );
282 Test Suite Convenience Methods Reference (See [test/data/testinit.js](https://github.com/jquery/jquery/blob/master/test/data/testinit.js))
283 ------------------------------
285 ### Returns an array of elements with the given IDs ###
287 ```js
288 q( ... );
291 Example:
293 ```js
294 q("main", "foo", "bar");
296 => [ div#main, span#foo, input#bar ]
299 ### Asserts that a selection matches the given IDs ###
301 ```js
302 t( testName, selector, [ "array", "of", "ids" ] );
305 Example:
307 ```js
308 t("Check for something", "//[a]", ["foo", "bar"]);
313 ### Fires a native DOM event without going through jQuery ###
315 ```js
316 fireNative( node, eventType )
319 Example:
321 ```js
322 fireNative( jQuery("#elem")[0], "click" );
325 ### Add random number to url to stop caching ###
327 ```js
328 url( "some/url" );
331 Example:
333 ```js
334 url("index.html");
336 => "data/index.html?10538358428943"
339 url("mock.php?foo=bar");
341 => "data/mock.php?foo=bar&10538358345554"
345 ### Run tests in an iframe ###
347 Some tests may require a document other than the standard test fixture, and
348 these can be run in a separate iframe. The actual test code and assertions
349 remain in jQuery's main test files; only the minimal test fixture markup
350 and setup code should be placed in the iframe file.
352 ```js
353 testIframe( testName, fileName,
354   function testCallback(
355       assert, jQuery, window, document,
356           [ additional args ] ) {
357         ...
358   } );
361 This loads a page, constructing a url with fileName `"./data/" + fileName`.
362 The iframed page determines when the callback occurs in the test by
363 including the "/test/data/iframeTest.js" script and calling
364 `startIframeTest( [ additional args ] )` when appropriate. Often this
365 will be after either document ready or `window.onload` fires.
367 The `testCallback` receives the QUnit `assert` object created by `testIframe`
368 for this test, followed by the global `jQuery`, `window`, and `document` from
369 the iframe. If the iframe code passes any arguments to `startIframeTest`,
370 they follow the `document` argument.
373 Questions?
374 ----------
376 If you have any questions, please feel free to ask on the
377 [Developing jQuery Core forum](https://forum.jquery.com/developing-jquery-core) or in #jquery on irc.freenode.net.