jQuery getting too big?
The primary goal of this project would be for the feedback/demand to kickstart jquery.com into re-organizing its code-base so it's more modular since we believe we've proved the most useful parts of jQuery is a fraction of its code-base.
To this end, follow this project if you want jquery.com to measure the demand for this. Another project with similar goals is http://ender.no.de/ - for node.js. JSLim is another project that takes a novel approach to reducing code size with advanced minification techniques.
Zepto.js is another great alternative to jQuery, it's fast, light and optimized for mobile/webkit browsers. It's a popular option for PhoneGap developers with full support for the Backbone.js, Underscore.js and Spine.js frameworks. It has very recently added support for the latest Safari, Chrome, Firefox and Opera browsers - it makes use of latest EcmaScript 5 APIs without shims so if this is your targetted market, we encourage you to try it.
Based on recent posts it does looks like jQuery wants to build a slimmer jQuery. Although we don't think giving a trim is going far enough, we hope they perform larger re-structural changes allowing us to use most of the useful parts at a fraction of their cost. Their recent conversations into future file size reduction do sound promising.
Smaller, Lighter, Faster, more modular jQuery - include only the parts you want! Don't use it, Don't include it.
Minified & gzipped code sizes (v.03):
- jquip.js (6.6k)
- jquip.events.js (1k)
- jquip.docready.js (.5k)
- jquip.css.js (2.5k)
- jquip.ajax.js (1k)
- jquip.q-min.js (.6k) - An extremely fast but limited query engine (see below)
- jquip.q-qwery.js (2.6k) - A New fast replacement for Sizzle.js
- jquip.q-sizzle.js (5.29k) - Sizzle.js
The core jquip.js is only 6.6KB (minified and gzipped) - a fraction of the size of jQuery.
Has 90% of the good parts of jQuery (rest to be added plugins as needed), small enough to drop-in as source saving an external js reference.
Sizzle.js is only added on demand (if it's not already included) from cdnjs.com for browsers that need it (i.e. <=IE7) as we believe it's the optimal way to download shims for browsers that need it.
Most code has been ported from jQuery or Zepto.js and optimized where possible, e.g. internals use underscore's native _.each
over jquery's slower $.each
etc.
Licence: http://www.opensource.org/licenses/mit-license.php (Same as jQuery and Zepto.js)
Build customizable jquip packages with the jQuip Library Builder service
The jquip Simple Demo is also available to try online, whilst a version compiled with Google's Closure Library (Advanced mode) is in the repo.
This is NOT an official jQuery.com project.
Code-base will now be more stable as we've reached our goal of jquip.js (with the events + docready plugins) working in Backbone.js, there are likely a few fixes still to be added but the core is close to feature complete and wont require the major refactoring done recently.
We would still like to hear feedback on issues/non-implemented core functionality so we can measure the API popularity of missing pieces.
- Fixed
$().html
method to support DOM elements (for Backbone and other libraries)
- Intended to be last code change to significantly effect the size and API in the core jquip.js
$.loadAsync(url,cb)
script loader added to load plugin and user scripts on demand- For older browsers that don't have querySelector support, Sizzle.js is downloaded on demand from cdnjs.com
- If the ajax plugin is included and browser doesn't have JSON, it is also downloaded from cdnjs.com
- When all scripts loaded the callbacks registered in
$.scriptsLoaded
and$(callback)
are fired - Although if docready plugin is installed,
$(callback)
is only called on DOMContentLoaded
- When all scripts loaded the callbacks registered in
- Modern browsers won't need additional downloads, so
$(callback)
fires straight away or after any user scripts are loaded with$.loadAsync
- Added Expr support with :hidden and :visible baked in. Further :expression support can be plugged in by extending
$.Expr
- In addition to :expr's, filtering can also be #id, tagName, .className or [attr=value]
$().is
,$().not
,$().filter
and$().find
take advantage of the above filtering + Expr support
$().show
,$().hide
and$().toggle
improved. With css plugin it behaves like jQuery, without, it only checks the visibility of selected elements- css plugin improved to report correct dimensions on Height/Width/Left/Top methods
- Remaining Advanced Closure issues resolved (ie tests pass in both) should be safe to compile jquip.js and plugins
- An up-to-date bundle with all of jquip is kept in the repo at /dist/jquip.all.closure-advanced.js
- ServiceStack's MvcMiniProfiler Port is another example of a jQuery UI changed to using jquip (advanced compiled version) Small changes were required to workaround use of advanced Expressions or jQuery's animation features (all changes made are left in the comments)
- We now are able to compile in Closure Compiler's advanced compilation mode! The minified output passes Backbone.js test suite and reports only 1 not implemented feature in Spine.js tests. We still have Closure Compiler warnings as a result of un-annotated methods which we'll look at adding in the near future.
- The source code was modified (somewhat unnaturally) so it would work with the Closure Compiler, i.e. have all the API methods exported correctly.
- The total code-size (min+gzip) for jquip and non-query plugins (i.e. docready,events,css,ajax,custom) is 9.67k in advanced mode and 9.86k in Simple mode.
- Abstracted Events, pluggable query engines and new
$().find
andEvents
system courtesy of the much leaner implementation in Zepto.js, refactored to support multiple browsers. - We are now passing Backbone.js latest test-suite in all the latest browsers! Now included in the /test folder.
- New Spine.js tests added as well, now passing all but 1 test (in latest browsers)
- (we'll get to older IE browsers as soon as we find a PC with them installed :)
- New Event system added as a plugin, now with abstracted events.
- We expect most devs would want to include events, but can now be stripped if you dont.
- Query engines are now pluggable and none are included by default but will auto detect window.Sizzle or window.qwery if available and automatically download Sizzle.js from cdnjs.com if a browser doesn't support
document.querySelectorAll
(i.e. <=IE7). Note: because there's no Sizzle.js it's important to be aware of limitations when relying on browsers native querySelector implementations, i.e. there are restrictions in IE8 where the HTML page must be in standards mode and Safari in quirks mode can't handle uppercase or unicode characters.
- Customizable Library builder service at
- Node js build scripts added to minify jquip with UglifyJS.
- $.addConstructor is now
$.hook
- $.addPlugin is now
$.plug
- scrollLeft and scrollTop is now in the css plugin
- Due to a request by the jQuery team we're no longer assigning the jQuery variable, you will now need to manually change this yourself on the first line of jquip.js:
window.jquip = window.$ = (function()..
- Getting jquip to work in Google Closure Compiler's advanced compilation mode without warnings so it can be used to programatically strip out dead code your application doesn't use for an even smaller footprint!
- Add the Closure Advanced Compiler option to the jquip library service
- Add missing shims to Abstracted Events (decided to add them after all due to popular demand)
- Add caching to improve performance
Methods marked with * are only partially implemented.
-
$(selector)
- $(selector, context), $(element), $(array)
- $(callback) requires docready plugin.
- add
- each
- attr
- removeAttr
- get
- toArray
- data
- append
- appendTo
- prepend
- prependTo
- before
- insertBefore
- after
- insertAfter
- toggle
- hide
- show
- fadeIn and fadeOut - does so without animation, consider using jquery.animate-enhanced plugin*
- eq
- first
- last
- indexOf
- slice
- find*
- not*
- filter*
- is*
- remove
- closest
- val* - does not do checkbox, select, etc.
- html
- text
- empty
- addClass
- removeClass
- hasClass
- parent
- parents
- parentsUntil
- next
- prev
- nextAll
- nextUntil
- prevUntil
- siblings
- children
- contents
- serializeArray
- $$ - querySelectorAll or query engine shim
- $.each
- $._each - Underscore's native each
- $._indexOf - Underscore's indexOf
- $._defaults - Underscore's defaults
- $._filter - Underscore's filter
- $.Expr - :hidden :visible now supported, can plugin other expressions as needed.
- $.filter
- $.dir
- $.nth
- $.sibling
- $.grep
- $.map
- $.data
- $.attrs
- $.trim
- $.isFunction
- $.isArray
- $.isWindow
- $.isNaN
- $.merge
- $.extend
- $.makeArray
- $.hasClass
- $.typeOf - safe type of a variable
- $.loadScript - (url, callback [, async]) load an external script dynamically
- $.loadAsync - load js async and call
$(callback)
or$.scriptsLoaded
when all scripts have been loaded - $.scriptsLoaded - register callbacks to be fired when all async scripts have been loaded.
- $.htmlFrag - creates a document fragment from a html string (name changed)
- $.walk - traveres all childElems including self
(predicateFn, [[, context], results])
- $.query - query Engine i.r. doc.querySelector || queryEngine Shim
- $.attrs - an elements attributes
- $.unique - return a unique list of elements in document order
- $.contains - parent element contains sibling
Pick and choose the parts of jQuery when and add you use them.
Other parts of jQuery can be Added via Plugins which is simply a matter of copying or including the
script after the core jquip.js
.
- bind
- unbind
- one
- delegate
- undelegate
- live
- die
- trigger
- $.bind
- $.unbind
blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error
yep, it's a plugin!
- $.css
- width
- height
- innerHeight
- innerWidth
- outerHeight
- outerWidth
- scrollLeft
- scrollTop
- $.camelCase
based on David Flanagan HttpUtils modfied to work like jQuery's ajax.
- $.xhr (cross-browser XHR Native Object)
- $.ajax
- $.get
- $.post
- $.getJSON
- $.getScript
- $.formData - convert object hash into a url Encoded string component
- $._template - Underscore's template
- $.queryString - cached map of queryString variables
- $.is[Tab|Enter|Shift|...] - static functions to detect named keys pressed, e.g.
if ($.isEnter(e)) console.log("pressed enter")
- $.cancelEvent - cross-browser fn to
preventDefault()
andstopPropogation()
, returns false.
Extending jquip:
-
plug(name, fn($))
- Register your own plugin, mutate$
to extend jquip. -
bool $.hook (function(selector, contxt))
- Intercept the constructor request. -
$.setQuery (function(selector, context))
- plugin your own query engine
You can also include Sizzle.js or qwery.js above jquip.js (using IE's conditional comments is a good approach), it will automatically be registered. The q-{queryEngine}.js plugins are also self-registering.
Intercept the $(){ .. }
constructor and inject your own implementation. Return true to short-circuit. e.g: from the docready plugin:
Many corner cases we feel that are not likely to be hit in normal development have been intentionally stripped out, it's therefore possible for older browsers to experience some issues if you code hits these edge cases.
In addition to its fluent API, jQuery does a lot of cross-browser normalization as well as sanitization and quarantine for edge cases in older browsers which no doubt makes it a safer but slower option.
Non supported examples:
- Script tags in inserted HTML are not automatically evaluated
- Attributes and event handlers of cloned html fragments are not copied across
- Expression support is limited see v.03 release notes
We prefer not to take the perf and code-bloat hit of this quarantine - if your app does hit one of these edge cases you will either need to code a specific workaround for your apps usage (which will in all likely be more optimized than jQuery's general purpose solution) or simply move back to using jQuery.
Contrary to the strong-held opinions of many "javascript experts" DOMContentLoaded is rarely the fastest solution to run your app's logic. It is a safer option but in most cases your app will run faster if you execute your javascript somewhere below the HTML elements they reference even if it's at the bottom of your page it will fire before DOMContentLoaded which will no longer be required. This guidance is from the Google Apps and YUI developer teams (amongst others). If you can't control where user scripts are placed, DOMContentLoaded is still a suitable option. This answer on StackOverflow provides a good overview over when to use it.
We thought we'd clarify as we've received a lot of feedback (aka strong opinions) on this subject - this is why jQuery's popular docready is a plugin that's not included by default - simply include it as a plugin if you wish.
Similarly related, for best page load times you should
move scripts to the bottom
of your page, e.g. before the closing </body>
tag.
If you're not referencing jquip near the bottom of your page and don't have either the events or
docready plugins included, you should call $.onload()
in your own post DOMReady event. It performs
post processing tasks like downloading Sizzle.js (for <=IE7), calculates browser feature support, etc.
As of v.03 the recommended approach to load scripts is now in $(callback)
which gets fired right after
all on async loaded scripts (inc user scripts) have been downloaded, which is still straight away for modern
browsers (i.e. when no async downloads are needed). This recommendation can be ignored if you are only
performing primitive queries (i.e. by #id, tag or .class) where querySelectorAll or Sizzle.js are not needed.
For older browsers (<=IE7) Sizzle.js is downloaded on demand, if ajax plugin is included JSON is also downloaded if it doesn't exist.
User and plugin scripts can be loaded dynamically with $.loadAsync(url, cb)
which get loaded before
$(callback)
is fired. Additional scripts that are not needed on first page loaded can be downloaded with
$.loadScript(url, cb)
.
Our recommendation for ultimate performance is to have a single reference to bundled and minified scripts needed immediately when the page is loaded. Followed by async downloading of all scripts required by your websites later.
Pre-fetching scripts needed on subsequent pages so its hot in your browsers cache is also a good idea.
Weighing at just 0.6k query-min is an ultra fast selector engine for browsers that don't provide native support for the querySelectorAll APIs (e.g. <=IE7). It works by offloading as much work as possible to the browsers primitive document.getElementById()
, document.getElementsByTagName()
and document.getElementsByClassName()
apis.
On our last JavaScript heavy project, performance was improved by 7-8x in older browsers. If you're having performance issues with older browsers it's worth evaluating.
All selectors require an Id (i.e. #) Tag (e.g. INPUT) or class name in each child selector.
Valid Examples:
- TBODY TD.c1 INPUT
- TH.c1 STRONG
- #btnSubmit SPAN
- FORM INPUT[name='chkProcess']
- FORM INPUT[type='text']
- FORM INPUT[type]
- FORM#id.a.b
- FORM#id .a.b
- .a.b.c
- .a
For optimal performance in <= IE7, the first child selector should be a tag or an #id as it cuts down the amount of DOM traversing needed to be done in JavaScript since there is no document.getElementsByClassName()
available.
The project now includes the node.js /server/jquip.builder.js so you can host your own jquip Library builder service internally.
I'd love help with this so Contributors and pull requests are very welcome!
The main task that needs doing is to get all the missing jQuery parts in as plugins and a comprehensive test suite so we can properly identify the parts of jQuery supported.
Feedback is welcome, drop me a line on @demisbellot.
- @mythz (Demis Bellot)
- @jeyb (Jey Balachandran)
- @solarissmoke (solarissmoke)
- @statianzo (Jason Staten)