|
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.

Space Monkey - A Personal Distributed Cloud 31/05/2013
The problem with the cloud is that it tends to be centralized and remote. Space Monkey has just secured $350,000 in Kickstarter funding to make the cloud personal by selling commodity boxes to end use [ ... ]
|
Windows 8 Users Hardly Use Any Modern Apps 03/06/2013
Windows 8 "metro-style" apps, as we used to call them until they were re-labeled as "Modern" apps, were supposed to be one of the big benefits of moving to Windows 8. Research has now indicated that, [ ... ]
| | More News |
|