PageRenderTime 28ms CodeModel.GetById 9ms RepoModel.GetById 0ms app.codeStats 0ms

/README.md

https://gitlab.com/Rockyspade/jquery
Markdown | 373 lines | 247 code | 126 blank | 0 comment | 0 complexity | b9212888e4aceb5e93dd4c098c594a54 MD5 | raw file
  1. [jQuery](http://jquery.com/) — New Wave JavaScript
  2. ==================================================
  3. Contribution Guides
  4. --------------------------------------
  5. 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:
  6. 1. [Getting Involved](http://contribute.jquery.org/)
  7. 2. [Core Style Guide](http://contribute.jquery.org/style-guide/js/)
  8. 3. [Writing Code for jQuery Foundation Projects](http://contribute.jquery.org/code/)
  9. Environments in which to use jQuery
  10. --------------------------------------
  11. - [Browser support](http://jquery.com/browser-support/) differs between the master branch and the compat branch. Specifically, the master branch does not support legacy browsers such as IE8. The jQuery team continues to provide support for legacy browsers on the compat branch. Use the latest compat release if support for those browsers is required. See [browser support](http://jquery.com/browser-support/) for more info.
  12. - To use jQuery in Node, browser extensions, and other non-browser environments, use only master branch releases given the name "jquery" rather than "jquery-compat". The compat branch does not support these environments.
  13. What you need to build your own jQuery
  14. --------------------------------------
  15. 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.
  16. For Windows, you have to download and install [git](http://git-scm.com/downloads) and [Node.js](http://nodejs.org/download/).
  17. OS X users should install [Homebrew](http://brew.sh/). Once Homebrew is installed, run `brew install git` to install git,
  18. and `brew install node` to install Node.js.
  19. Linux/BSD users should use their appropriate package managers to install git and Node.js, or build from source
  20. if you swing that way. Easy-peasy.
  21. How to build your own jQuery
  22. ----------------------------
  23. Clone a copy of the main jQuery git repo by running:
  24. ```bash
  25. git clone git://github.com/jquery/jquery.git
  26. ```
  27. Enter the jquery directory and run the build script:
  28. ```bash
  29. cd jquery && npm run build
  30. ```
  31. The built version of jQuery will be put in the `dist/` subdirectory, along with the minified copy and associated map file.
  32. 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:
  33. ```
  34. npm install -g grunt-cli
  35. ```
  36. Make sure you have `grunt` installed by testing:
  37. ```
  38. grunt -V
  39. ```
  40. 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:
  41. ```
  42. grunt
  43. ```
  44. There are many other tasks available for jQuery Core:
  45. ```
  46. grunt -help
  47. ```
  48. ### Modules
  49. Special builds can be created that exclude subsets of jQuery functionality.
  50. This allows for smaller custom builds when the builder is certain that those parts of jQuery are not being used.
  51. 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.
  52. 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).
  53. Some example modules that can be excluded are:
  54. - **ajax**: All AJAX functionality: `$.ajax()`, `$.get()`, `$.post()`, `$.ajaxSetup()`, `.load()`, transports, and ajax event shorthands such as `.ajaxStart()`.
  55. - **ajax/xhr**: The XMLHTTPRequest AJAX transport only.
  56. - **ajax/script**: The `<script>` AJAX transport only; used to retrieve scripts.
  57. - **ajax/jsonp**: The JSONP AJAX transport only; depends on the ajax/script transport.
  58. - **css**: The `.css()` method plus non-animated `.show()`, `.hide()` and `.toggle()`. Also removes **all** modules depending on css (including **effects**, **dimensions**, and **offset**).
  59. - **deprecated**: Methods documented as deprecated but not yet removed.
  60. - **dimensions**: The `.width()` and `.height()` methods, including `inner-` and `outer-` variations.
  61. - **effects**: The `.animate()` method and its shorthands such as `.slideUp()` or `.hide("slow")`.
  62. - **event**: The `.on()` and `.off()` methods and all event functionality. Also removes `event/alias`.
  63. - **event/alias**: All event attaching/triggering shorthands like `.click()` or `.mouseover()`.
  64. - **offset**: The `.offset()`, `.position()`, `.offsetParent()`, `.scrollLeft()`, and `.scrollTop()` methods.
  65. - **wrap**: The `.wrap()`, `.wrapAll()`, `.wrapInner()`, and `.unwrap()` methods.
  66. - **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.
  67. - **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`).
  68. - **exports/global**: Exclude the attachment of global jQuery variables ($ and jQuery) to the window.
  69. - **exports/amd**: Exclude the AMD definition.
  70. As a special case, you may also replace Sizzle by using a special flag `grunt custom:-sizzle`.
  71. - **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.
  72. *Note*: Excluding Sizzle will also exclude all jQuery selector extensions (such as `effects/animatedSelector` and `css/hiddenVisibleSelectors`).
  73. *Note*: Removing Sizzle is not supported on the `compat` branch.
  74. The build process shows a message for each dependent module it excludes or includes.
  75. ##### AMD name
  76. 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:
  77. ```bash
  78. grunt custom --amd="custom-name"
  79. ```
  80. Or, to define anonymously, set the name to an empty string.
  81. ```bash
  82. grunt custom --amd=""
  83. ```
  84. #### Custom Build Examples
  85. To create a custom build, first check out the version:
  86. ```bash
  87. git pull; git checkout VERSION
  88. ```
  89. Where VERSION is the version you want to customize. Then, make sure all Node dependencies are installed:
  90. ```bash
  91. npm install
  92. ```
  93. Create the custom build using the `grunt custom` option, listing the modules to be excluded.
  94. Exclude all **ajax** functionality:
  95. ```bash
  96. grunt custom:-ajax
  97. ```
  98. Excluding **css** removes modules depending on CSS: **effects**, **offset**, **dimensions**.
  99. ```bash
  100. grunt custom:-css
  101. ```
  102. Exclude a bunch of modules:
  103. ```bash
  104. grunt custom:-ajax,-css,-deprecated,-dimensions,-effects,-event/alias,-offset,-wrap
  105. ```
  106. 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.
  107. Running the Unit Tests
  108. --------------------------------------
  109. Make sure you have the necessary dependencies:
  110. ```bash
  111. npm install
  112. ```
  113. Start `grunt watch` or `npm start` to auto-build jQuery as you work:
  114. ```bash
  115. grunt watch
  116. ```
  117. 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:
  118. - Windows: [WAMP download](http://www.wampserver.com/en/)
  119. - Mac: [MAMP download](http://www.mamp.info/en/index.html)
  120. - Linux: [Setting up LAMP](https://www.linux.com/learn/tutorials/288158-easy-lamp-server-installation)
  121. - [Mongoose (most platforms)](http://code.google.com/p/mongoose/)
  122. Building to a different directory
  123. ---------------------------------
  124. To copy the built jQuery files from `/dist` to another directory:
  125. ```bash
  126. grunt && grunt dist:/path/to/special/location/
  127. ```
  128. With this example, the output files would be:
  129. ```bash
  130. /path/to/special/location/jquery.js
  131. /path/to/special/location/jquery.min.js
  132. ```
  133. To add a permanent copy destination, create a file in `dist/` called ".destination.json". Inside the file, paste and customize the following:
  134. ```json
  135. {
  136. "/Absolute/path/to/other/destination": true
  137. }
  138. ```
  139. Additionally, both methods can be combined.
  140. Essential Git
  141. -------------
  142. As the source code is handled by the Git version control system, it's useful to know some features used.
  143. ### Cleaning ###
  144. 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):
  145. ```bash
  146. git reset --hard upstream/master
  147. git clean -fdx
  148. ```
  149. ### Rebasing ###
  150. 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:
  151. ```bash
  152. git config branch.autosetuprebase local
  153. ```
  154. (see `man git-config` for more information)
  155. ### Handling merge conflicts ###
  156. If you're getting merge conflicts when merging, instead of editing the conflicted files manually, you can use the feature
  157. `git mergetool`. Even though the default tool `xxdiff` looks awful/old, it's rather useful.
  158. The following are some commands that can be used there:
  159. * `Ctrl + Alt + M` - automerge as much as possible
  160. * `b` - jump to next merge conflict
  161. * `s` - change the order of the conflicted lines
  162. * `u` - undo a merge
  163. * `left mouse button` - mark a block to be the winner
  164. * `middle mouse button` - mark a line to be the winner
  165. * `Ctrl + S` - save
  166. * `Ctrl + Q` - quit
  167. [QUnit](http://api.qunitjs.com) Reference
  168. -----------------
  169. ### Test methods ###
  170. ```js
  171. expect( numAssertions );
  172. stop();
  173. start();
  174. ```
  175. *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.
  176. ### Test assertions ###
  177. ```js
  178. ok( value, [message] );
  179. equal( actual, expected, [message] );
  180. notEqual( actual, expected, [message] );
  181. deepEqual( actual, expected, [message] );
  182. notDeepEqual( actual, expected, [message] );
  183. strictEqual( actual, expected, [message] );
  184. notStrictEqual( actual, expected, [message] );
  185. throws( block, [expected], [message] );
  186. ```
  187. Test Suite Convenience Methods Reference (See [test/data/testinit.js](https://github.com/jquery/jquery/blob/master/test/data/testinit.js))
  188. ------------------------------
  189. ### Returns an array of elements with the given IDs ###
  190. ```js
  191. q( ... );
  192. ```
  193. Example:
  194. ```js
  195. q("main", "foo", "bar");
  196. => [ div#main, span#foo, input#bar ]
  197. ```
  198. ### Asserts that a selection matches the given IDs ###
  199. ```js
  200. t( testName, selector, [ "array", "of", "ids" ] );
  201. ```
  202. Example:
  203. ```js
  204. t("Check for something", "//[a]", ["foo", "baar"]);
  205. ```
  206. ### Fires a native DOM event without going through jQuery ###
  207. ```js
  208. fireNative( node, eventType )
  209. ```
  210. Example:
  211. ```js
  212. fireNative( jQuery("#elem")[0], "click" );
  213. ```
  214. ### Add random number to url to stop caching ###
  215. ```js
  216. url( "some/url.php" );
  217. ```
  218. Example:
  219. ```js
  220. url("data/test.html");
  221. => "data/test.html?10538358428943"
  222. url("data/test.php?foo=bar");
  223. => "data/test.php?foo=bar&10538358345554"
  224. ```
  225. ### Load tests in an iframe ###
  226. Loads a given page constructing a url with fileName: `"./data/" + fileName + ".html"`
  227. and fires the given callback on jQuery ready (using the jQuery loading from that page)
  228. and passes the iFrame's jQuery to the callback.
  229. ```js
  230. testIframe( fileName, testName, callback );
  231. ```
  232. Callback arguments:
  233. ```js
  234. callback( jQueryFromIFrame, iFrameWindow, iFrameDocument );
  235. ```
  236. ### Load tests in an iframe (window.iframeCallback) ###
  237. Loads a given page constructing a url with fileName: `"./data/" + fileName + ".html"`
  238. The given callback is fired when window.iframeCallback is called by the page.
  239. The arguments passed to the callback are the same as the
  240. arguments passed to window.iframeCallback, whatever that may be.
  241. ```js
  242. testIframeWithCallback( testName, fileName, callback );
  243. ```
  244. Questions?
  245. ----------
  246. If you have any questions, please feel free to ask on the
  247. [Developing jQuery Core forum](http://forum.jquery.com/developing-jquery-core) or in #jquery on irc.freenode.net.