|
If you are looking for a new framework to help you build a web site, then you need to know about Vanilla JS. This is the most powerful and lightweight of all the frameworks. It is already in use by a huge number of websites and autodownloaded by most browsers.
As the Vanilla JS team say:
Vanilla JS is a fast, lightweight, cross-platform framework for building incredible, powerful JavaScript applications.
The next statement you might find difficult to believe:
In fact, Vanilla JS is already used on more websites than jQuery, Prototype JS, MooTools, YUI, and Google Web Toolkit - combined.

To be more accurate Vanilla JS is used at least in part by the majority of websites including - Facebook, Google, YouTube, Yahoo and so on.
Standard features supported out of the box, not that there is a box, include closures; DOM selectors/manipulation; Ajax; a sophisticated event handling system; 2D graphics and 3D in some cases; full regular expression support; and so on. In fact, almost anything you want is included in Vanilla JS.
Not only that it is fast. The Vanilla JS main page has some speed comparisons but we can't resist quoting the benchmark for DOM object retrieval:
|
Code | ops / sec |
| Vanilla JS |
document.getElementById('test-table'); |
|
|
Dojo
|
dojo.byId('test-table'); |
|
| Prototype JS |
$('test-table') |
|
| Ext JS |
delete Ext.elCache['test-table']; Ext.get('test-table'); |
|
| jQuery |
$jq('#test-table'); |
|
| YUI |
YAHOO.util.Dom.get('test-table'); |
|
| MooTools |
document.id('test-table'); |
|
Notice that the best alternative framework is less more than twice as slow and everyone's favourite jQuery is four times slower. Just think of all that speed you are giving up! Other benchmarks reveal an even bigger advantage for Vanilla JS.
Excited?
So were we.
And amazingly we discovered that we were already downloading Vanilla JS and even using it occasionally.
If you can't wait to get started visit the Vanilla JS site for more information.
We should all be grateful to the Vanilla JS team for maintaining so many lines of code and finding a scheme that makes up-dates completely unnecessary.

Rackspace Cloud SDK for .NET 08/05/2013
Rackspace has launched Openstack.net, an SDK for .NET developers so you can create web apps for the Rackspace Cloud.
|
Dr Who To Host Imagine Cup Awards Ceremony 13/05/2013
This year's Imagine Cup Worldwide Finals take place in St. Petersburg Russia and Microsoft has recruited Matt Smith, aka Dr Who, to host the awards ceremony which will be streamed live online.
| | More News |
|