Tuesday, March 27th, 2007
DED|Chain: Dustin Diaz comes up with a new Ajax library
We get several emails a day from people letting us know about a new XHR wrapper. Recently we have been hearing about new libraries from leaders in the community such as Dean Edwards and now Dustin Diaz. Here is what Dustin has to say about DED|Chain, his new framework that builds on YUI:
DED|Chain is free open source software (BSD License) that will allow you to build first class, high-quality websites without the cruft. You get the reliability of Yahoo! UI, and the developer friendliess of jQuery. You also receive the benefits of an easily customizable A.P.I. which puts you in control of how you will work with the library.
The old demo de jour was an RSS reader, and now it may be a Twitter client ;)
- // throttle an array
- $().throttle(2, ['dustin', 'vince', 'robert'], {
- id: 'huzzah',
- callback: function(needle) {
- console.log(needle);
- },
- loop: true
- });
- // throttle an object
- $().throttle(5, { name:'Dustin', sex:'Male', age: 26 }, {
- id: 'blam',
- callback: function(needle) {
- console.log(needle);
- },
- onComplete: function() {
- this.request(
- },
- loop: true
- });
- // stop a throttle by name
- $().stopThrottle('blam');
Check it out!





Good God. Just what we need. Another Javascript library. =8^O
Although, DED|Chain looks nice and capable. But there’s already ExtJS+YUI, so… why, again?
I’ve always wanted to use YUI but never had the time to fully explore the API and docs. I have been investigating ExtJS which, as far as I can tell, had no competitors until now. Great! More work for me. :P
Where are the inevitable ExtJS vs DED|Chain comparisons?!?!
ExtJS and DED|Chain aren’t really competitors. From what I can tell, ExtJS is a cool interface library for YUI (and jQuery, etc), and DED|Chain just makes YUI more pleasurable to use in general.