Comparing version 1.8.3 to 2.1.0-beta2
{ | ||
"name": "jquery", | ||
"description": "jQuery: The Write Less, Do More, JavaScript Library (packaged for Node.JS)", | ||
"version": "1.8.3", | ||
"url": "http://jquery.com", | ||
"homepage": "https://github.com/coolaj86/node-jquery", | ||
"title": "jQuery", | ||
"description": "JavaScript library for DOM operations", | ||
"version": "2.1.0-beta2", | ||
"homepage": "http://jquery.com", | ||
"author": { | ||
"name": "James Morrin", | ||
"email": "treasonx@gmail.com" | ||
"name": "jQuery Foundation and other contributors", | ||
"url": "https://github.com/jquery/jquery/blob/master/AUTHORS.txt" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/coolaj86/node-jquery.git" | ||
"url": "https://github.com/jquery/jquery.git" | ||
}, | ||
"keywords": [ | ||
"jquery", | ||
"javascript", | ||
"library" | ||
], | ||
"bugs": { | ||
"url": "https://github.com/coolaj86/node-jquery/issues" | ||
"url": "http://bugs.jquery.com" | ||
}, | ||
@@ -21,29 +26,24 @@ "licenses": [ | ||
"type": "MIT", | ||
"url": "https://github.com/coolaj86/node-jquery/blob/master/LICENSE-MIT" | ||
"url": "https://github.com/jquery/jquery/blob/master/MIT-LICENSE.txt" | ||
} | ||
], | ||
"main": "lib/node-jquery", | ||
"engines": { | ||
"node": ">=0.6" | ||
}, | ||
"scripts": { | ||
"test": "grunt test" | ||
}, | ||
"dependencies": { | ||
"jsdom": "~0.2.14", | ||
"htmlparser": "1.7.6", | ||
"xmlhttprequest": "~1.4.2", | ||
"location": "0.0.1", | ||
"navigator": "~1.0.1", | ||
"contextify": "~0.1.3" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"grunt": "~0.3.8", | ||
"nodeunit": "~0.7.4" | ||
}, | ||
"keywords": [ | ||
"util", | ||
"dom", | ||
"jquery" | ||
] | ||
"archiver": "~0.4.10", | ||
"grunt": "~0.4.1", | ||
"grunt-bower-task": "~0.3.2", | ||
"grunt-cli": "~0.1.11", | ||
"grunt-compare-size": "~0.4.0", | ||
"grunt-contrib-jshint": "~0.7.0", | ||
"grunt-contrib-uglify": "~0.2.7", | ||
"grunt-contrib-watch": "~0.5.3", | ||
"grunt-git-authors": "~1.2.0", | ||
"grunt-jscs-checker": "~0.2.3", | ||
"grunt-jsonlint": "~1.0.1", | ||
"gzip-js": "0.3.2", | ||
"load-grunt-tasks": "~0.2.0", | ||
"testswarm": "~1.1.0", | ||
"requirejs": "~2.1.9", | ||
"which": "~1.0.5" | ||
} | ||
} |
372
README.md
@@ -1,72 +0,348 @@ | ||
DOES NOT WORK ON WINDOWS | ||
==== | ||
Many people are having problems getting this module to work on windows. The | ||
failure has to do with building contextify on window. It seems to be a windows | ||
environment issue. I don't have access to a windows machine so I cannot explore | ||
working through the windows install process. If you figure out how to build | ||
[contextify](https://github.com/brianmcd/contextify) on windows please send me working instructions! | ||
[jQuery](http://jquery.com/) - New Wave JavaScript | ||
================================================== | ||
NPM module jQuery is an EnderJS package. | ||
==== | ||
please use `npm install jquery` not `npm install jQuery` | ||
Contribution Guides | ||
-------------------------------------- | ||
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: | ||
node-jQuery | ||
==== | ||
1. [Getting Involved](http://docs.jquery.com/Getting_Involved) | ||
2. [Core Style Guide](http://docs.jquery.com/JQuery_Core_Style_Guidelines) | ||
3. [Tips For Bug Patching](http://docs.jquery.com/Tips_for_jQuery_Bug_Patching) | ||
A stupid-simple wrapper over jQuery for Node.JS (server). Currently 1.7.2. | ||
Node.JS | ||
--- | ||
What you need to build your own jQuery | ||
-------------------------------------- | ||
In order to build jQuery, you need to have Node.js/npm latest and git 1.7 or later. | ||
(Earlier versions might work OK, but are not tested.) | ||
For Windows you have to download and install [git](http://git-scm.com/downloads) and [Node.js](http://nodejs.org/download/). | ||
Mac OS users should install [Homebrew](http://mxcl.github.com/homebrew/). Once Homebrew is installed, run `brew install git` to install git, | ||
and `brew install node` to install Node.js. | ||
Linux/BSD users should use their appropriate package managers to install git and Node.js, or build from source | ||
if you swing that way. Easy-peasy. | ||
How to build your own jQuery | ||
---------------------------- | ||
Clone a copy of the main jQuery git repo by running: | ||
```bash | ||
git clone git://github.com/jquery/jquery.git | ||
``` | ||
npm install jquery | ||
var $ = require('jquery'); | ||
Enter the jquery directory and run the build script: | ||
```bash | ||
cd jquery && npm run-script build | ||
``` | ||
The built version of jQuery will be put in the `dist/` subdirectory, along with the minified copy and associated map file. | ||
Examples | ||
--- | ||
```javascript | ||
$("<h1>test passes</h1>").appendTo("body"); | ||
console.log($("body").html()); | ||
If you want create custom build or help with jQuery development, it would be better to install <a href="https://github.com/gruntjs/grunt-cli">grunt command line interface</a> as a global package: | ||
``` | ||
npm install -g grunt-cli | ||
``` | ||
Make sure you have `grunt` installed by testing: | ||
``` | ||
grunt -v | ||
``` | ||
In Node.JS you may also create separate window instances | ||
Now by running `grunt` command, in the jquery directory, you could build full version of jQuery, just like with `npm run-script build` command: | ||
``` | ||
grunt | ||
``` | ||
```javascript | ||
var jsdom = require('jsdom').jsdom | ||
, myWindow = jsdom().createWindow() | ||
, $ = require('jquery') | ||
, jq = require('jquery').create() | ||
, jQuery = require('jquery').create(myWindow) | ||
; | ||
There are many other tasks avaliable for jQuery Core: | ||
``` | ||
grunt -help | ||
``` | ||
$("<h1>test passes</h1>").appendTo("body"); | ||
console.log($("body").html()); | ||
### Modules | ||
jq("<h2>other test passes</h2>").appendTo("body"); | ||
console.log(jq("body").html()); | ||
Special builds can be created that exclude subsets of jQuery functionality. | ||
This allows for smaller custom builds when the builder is certain that those parts of jQuery are not being used. | ||
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. | ||
jQuery("<h3>third test passes</h3>").appendTo("body"); | ||
console.log(jQuery("body").html()); | ||
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). | ||
Some example modules that can be excluded are: | ||
- **ajax**: All AJAX functionality: `$.ajax()`, `$.get()`, `$.post()`, `$.ajaxSetup()`, `.load()`, transports, and ajax event shorthands such as `.ajaxStart()`. | ||
- **ajax/xhr**: The XMLHTTPRequest AJAX transport only. | ||
- **ajax/script**: The `<script>` AJAX transport only; used to retrieve scripts. | ||
- **ajax/jsonp**: The JSONP AJAX transport only; depends on the ajax/script transport. | ||
- **css**: The `.css()` method plus non-animated `.show()`, `.hide()` and `.toggle()`. Also removes **all** modules depending on css (including **effects**, **dimensions**, and **offset**). | ||
- **deprecated**: Methods documented as deprecated but not yet removed; currently only `.andSelf()`. | ||
- **dimensions**: The `.width()` and `.height()` methods, including `inner-` and `outer-` variations. | ||
- **effects**: The `.animate()` method and its shorthands such as `.slideUp()` or `.hide("slow")`. | ||
- **event**: The `.on()` and `.off()` methods and all event functionality. Also removes `event/alias`. | ||
- **event/alias**: All event attaching/triggering shorthands like `.click()` or `.mouseover()`. | ||
- **offset**: The `.offset()`, `.position()`, `.offsetParent()`, `.scrollLeft()`, and `.scrollTop()` methods. | ||
- **wrap**: The `.wrap()`, `.wrapAll()`, `.wrapInner()`, and `.unwrap()` methods. | ||
- **exports/amd**: Exclude the AMD definition. | ||
- **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. | ||
- **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`). | ||
As a special case, you may also replace Sizzle by using a special flag `grunt custom:-sizzle`. | ||
- **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 file for details. | ||
*Note*: Excluding Sizzle will also exclude all jQuery selector extensions (such as `effects/animatedSelector` and `css/hiddenVisibleSelectors`). | ||
The build process shows a message for each dependent module it excludes or includes. | ||
To create a custom build of the latest stable version, first check out the version: | ||
```bash | ||
git pull; git checkout $(git describe --abbrev=0 --tags) | ||
``` | ||
Output: | ||
Then, make sure all Node dependencies are installed: | ||
```html | ||
<h1>test passes</h1> | ||
<h2>other test passes</h2> | ||
<h3>third test passes</h3> | ||
```bash | ||
npm install | ||
``` | ||
JSONP Example | ||
---- | ||
Create the custom build, use the `grunt custom` option, listing the modules to be excluded. Examples: | ||
```javascript | ||
var $ = require('jquery'); | ||
Exclude all **ajax** functionality: | ||
$.getJSON('http://twitter.com/status/user_timeline/treason.json?count=10&callback=?',function(data) { | ||
console.log(data); | ||
}); | ||
```bash | ||
grunt custom:-ajax | ||
``` | ||
Excluding **css** removes modules depending on CSS: **effects**, **offset**, **dimensions**. | ||
```bash | ||
grunt custom:-css | ||
``` | ||
Exclude a bunch of modules: | ||
```bash | ||
grunt custom:-ajax,-css,-deprecated,-dimensions,-effects,-event/alias,-offset,-wrap | ||
``` | ||
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. | ||
Running the Unit Tests | ||
-------------------------------------- | ||
Make sure you have the necessary dependencies: | ||
```bash | ||
npm install | ||
``` | ||
Start `grunt watch` or `npm start` to auto-build jQuery as you work: | ||
```bash | ||
cd jquery && grunt watch | ||
``` | ||
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: | ||
- Windows: [WAMP download](http://www.wampserver.com/en/) | ||
- Mac: [MAMP download](http://www.mamp.info/en/index.html) | ||
- Linux: [Setting up LAMP](https://www.linux.com/learn/tutorials/288158-easy-lamp-server-installation) | ||
- [Mongoose (most platforms)](http://code.google.com/p/mongoose/) | ||
Building to a different directory | ||
--------------------------------- | ||
To copy the built jQuery files from `/dist` to another directory: | ||
```bash | ||
grunt && grunt dist:/path/to/special/location/ | ||
``` | ||
With this example, the output files would be: | ||
```bash | ||
/path/to/special/location/jquery.js | ||
/path/to/special/location/jquery.min.js | ||
``` | ||
To add a permanent copy destination, create a file in `dist/` called ".destination.json". Inside the file, paste and customize the following: | ||
```json | ||
{ | ||
"/Absolute/path/to/other/destination": true | ||
} | ||
``` | ||
Additionally, both methods can be combined. | ||
Essential Git | ||
------------- | ||
As the source code is handled by the version control system Git, it's useful to know some features used. | ||
### cleaning ### | ||
If you want to purge your working directory back to the status of upstream, following commands can be used (remember everything you've worked on is gone after these): | ||
```bash | ||
git reset --hard upstream/master | ||
git clean -fdx | ||
``` | ||
### rebasing ### | ||
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 following to automate this: | ||
```bash | ||
git config branch.autosetuprebase local | ||
``` | ||
(see `man git-config` for more information) | ||
### handling merge conflicts ### | ||
If you're getting merge conflicts when merging, instead of editing the conflicted files manually, you can use the feature | ||
`git mergetool`. Even though the default tool `xxdiff` looks awful/old, it's rather useful. | ||
Following are some commands that can be used there: | ||
* `Ctrl + Alt + M` - automerge as much as possible | ||
* `b` - jump to next merge conflict | ||
* `s` - change the order of the conflicted lines | ||
* `u` - undo a merge | ||
* `left mouse button` - mark a block to be the winner | ||
* `middle mouse button` - mark a line to be the winner | ||
* `Ctrl + S` - save | ||
* `Ctrl + Q` - quit | ||
[QUnit](http://docs.jquery.com/QUnit) Reference | ||
----------------- | ||
### Test methods ### | ||
```js | ||
expect( numAssertions ); | ||
stop(); | ||
start(); | ||
``` | ||
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 | ||
### Test assertions ### | ||
```js | ||
ok( value, [message] ); | ||
equal( actual, expected, [message] ); | ||
notEqual( actual, expected, [message] ); | ||
deepEqual( actual, expected, [message] ); | ||
notDeepEqual( actual, expected, [message] ); | ||
strictEqual( actual, expected, [message] ); | ||
notStrictEqual( actual, expected, [message] ); | ||
raises( block, [expected], [message] ); | ||
``` | ||
Test Suite Convenience Methods Reference (See [test/data/testinit.js](https://github.com/jquery/jquery/blob/master/test/data/testinit.js)) | ||
------------------------------ | ||
### Returns an array of elements with the given IDs ### | ||
```js | ||
q( ... ); | ||
``` | ||
Example: | ||
```js | ||
q("main", "foo", "bar"); | ||
=> [ div#main, span#foo, input#bar ] | ||
``` | ||
### Asserts that a selection matches the given IDs ### | ||
```js | ||
t( testName, selector, [ "array", "of", "ids" ] ); | ||
``` | ||
Example: | ||
```js | ||
t("Check for something", "//[a]", ["foo", "baar"]); | ||
``` | ||
### Fires a native DOM event without going through jQuery ### | ||
```js | ||
fireNative( node, eventType ) | ||
``` | ||
Example: | ||
```js | ||
fireNative( jQuery("#elem")[0], "click" ); | ||
``` | ||
### Add random number to url to stop caching ### | ||
```js | ||
url( "some/url.php" ); | ||
``` | ||
Example: | ||
```js | ||
url("data/test.html"); | ||
=> "data/test.html?10538358428943" | ||
url("data/test.php?foo=bar"); | ||
=> "data/test.php?foo=bar&10538358345554" | ||
``` | ||
### Load tests in an iframe ### | ||
Loads a given page constructing a url with fileName: `"./data/" + fileName + ".html"` | ||
and fires the given callback on jQuery ready (using the jQuery loading from that page) | ||
and passes the iFrame's jQuery to the callback. | ||
```js | ||
testIframe( fileName, testName, callback ); | ||
``` | ||
Callback arguments: | ||
```js | ||
callback( jQueryFromIFrame, iFrameWindow, iFrameDocument ); | ||
``` | ||
### Load tests in an iframe (window.iframeCallback) ### | ||
Loads a given page constructing a url with fileName: `"./data/" + fileName + ".html"` | ||
The given callback is fired when window.iframeCallback is called by the page | ||
The arguments passed to the callback are the same as the | ||
arguments passed to window.iframeCallback, whatever that may be | ||
```js | ||
testIframeWithCallback( testName, fileName, callback ); | ||
``` | ||
Questions? | ||
---------- | ||
If you have any questions, please feel free to ask on the | ||
[Developing jQuery Core forum](http://forum.jquery.com/developing-jquery-core) or in #jquery on irc.freenode.net. |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Deprecated
MaintenanceThe maintainer of the package marked it as deprecated. This could indicate that a single version should not be used, or that the package is no longer maintained and any new vulnerabilities will not be fixed.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Uses eval
Supply chain riskPackage uses dynamic code execution (e.g., eval()), which is a dangerous practice. This can prevent the code from running in certain environments and increases the risk that the code may contain exploits or malicious behavior.
Found 1 instance in 1 package
Dynamic require
Supply chain riskDynamic require can indicate the package is performing dangerous or unsafe dynamic code execution.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
1143120
0
103
25659
0
349
0
2
16
1
- Removedcontextify@~0.1.3
- Removedhtmlparser@1.7.6
- Removedjsdom@~0.2.14
- Removedlocation@0.0.1
- Removednavigator@~1.0.1
- Removedxmlhttprequest@~1.4.2
- Removedajv@6.12.6(transitive)
- Removedasn1@0.2.6(transitive)
- Removedassert-plus@1.0.0(transitive)
- Removedasynckit@0.4.0(transitive)
- Removedaws-sign2@0.7.0(transitive)
- Removedaws4@1.13.2(transitive)
- Removedbcrypt-pbkdf@1.0.2(transitive)
- Removedbindings@1.5.0(transitive)
- Removedcaseless@0.12.0(transitive)
- Removedcombined-stream@1.0.8(transitive)
- Removedcontextify@0.1.15(transitive)
- Removedcore-util-is@1.0.2(transitive)
- Removedcssom@0.2.5(transitive)
- Removedcssstyle@4.1.0(transitive)
- Removeddashdash@1.14.1(transitive)
- Removeddelayed-stream@1.0.0(transitive)
- Removedecc-jsbn@0.1.2(transitive)
- Removedextend@3.0.2(transitive)
- Removedextsprintf@1.3.0(transitive)
- Removedfast-deep-equal@3.1.3(transitive)
- Removedfast-json-stable-stringify@2.1.0(transitive)
- Removedfile-uri-to-path@1.0.0(transitive)
- Removedforever-agent@0.6.1(transitive)
- Removedform-data@2.3.3(transitive)
- Removedgetpass@0.1.7(transitive)
- Removedhar-schema@2.0.0(transitive)
- Removedhar-validator@5.1.5(transitive)
- Removedhtmlparser@1.7.6(transitive)
- Removedhttp-signature@1.2.0(transitive)
- Removedis-typedarray@1.0.0(transitive)
- Removedisstream@0.1.2(transitive)
- Removedjsbn@0.1.1(transitive)
- Removedjsdom@0.2.19(transitive)
- Removedjson-schema@0.4.0(transitive)
- Removedjson-schema-traverse@0.4.1(transitive)
- Removedjson-stringify-safe@5.0.1(transitive)
- Removedjsprim@1.4.2(transitive)
- Removedlocation@0.0.1(transitive)
- Removedmime-db@1.52.0(transitive)
- Removedmime-types@2.1.35(transitive)
- Removednan@2.22.0(transitive)
- Removednavigator@1.0.1(transitive)
- Removedoauth-sign@0.9.0(transitive)
- Removedperformance-now@2.1.0(transitive)
- Removedpsl@1.10.0(transitive)
- Removedpunycode@2.3.1(transitive)
- Removedqs@6.5.3(transitive)
- Removedrequest@2.88.2(transitive)
- Removedrrweb-cssom@0.7.1(transitive)
- Removedsafe-buffer@5.2.1(transitive)
- Removedsafer-buffer@2.1.2(transitive)
- Removedsshpk@1.18.0(transitive)
- Removedtough-cookie@2.5.0(transitive)
- Removedtunnel-agent@0.6.0(transitive)
- Removedtweetnacl@0.14.5(transitive)
- Removeduri-js@4.4.1(transitive)
- Removeduuid@3.4.0(transitive)
- Removedverror@1.10.0(transitive)
- Removedxmlhttprequest@1.4.2(transitive)