├── Makefile ├── README.md ├── js-universe.dot ├── js-universe.pdf ├── js-universe.png └── js-universe.svg /Makefile: -------------------------------------------------------------------------------- 1 | PNG_TARGET = js-universe.png 2 | PDF_TARGET = js-universe.pdf 3 | SVG_TARGET = js-universe.svg 4 | TARGETS = $(PNG_TARGET) $(PDF_TARGET) $(SVG_TARGET) 5 | DOT = dot 6 | SOURCE_FILE = js-universe.dot 7 | 8 | all: $(TARGETS) 9 | 10 | $(PNG_TARGET): $(SOURCE_FILE) Makefile 11 | $(DOT) -Tpng $(SOURCE_FILE) -o $(PNG_TARGET) 12 | 13 | $(PDF_TARGET): $(SOURCE_FILE) Makefile 14 | $(DOT) -Tpdf $(SOURCE_FILE) -o $(PDF_TARGET) 15 | 16 | $(SVG_TARGET): $(SOURCE_FILE) Makefile 17 | $(DOT) -Tsvg $(SOURCE_FILE) -o $(SVG_TARGET) 18 | 19 | clean: 20 | @-rm $(TARGETS) 21 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | js-universe 2 | =========== 3 | 4 | A place to map the observable JavaScript hackers working today and yesterday. 5 | 6 | Building/Contributing 7 | --------------------- 8 | 9 | You'll need to install GraphViz to re-generate the PDF/PNG files from the dot file. On a Mac, try: 10 | 11 | ``` 12 | $ brew install graphviz 13 | ``` 14 | 15 | To regenerate the output either use the Makefile: 16 | 17 | ``` 18 | $ make 19 | ``` 20 | 21 | or run dot directly: 22 | 23 | ``` 24 | $ dot -Tpng js-universe.dot -o js-universe.png 25 | $ dot -Tpdf js-universe.dot -o js-universe.pdf 26 | ``` 27 | -------------------------------------------------------------------------------- /js-universe.dot: -------------------------------------------------------------------------------- 1 | /* 2 | * A Map of the JavaScript Universe 3 | * 4 | * Copyright 2005, The Dojo Foundation 5 | * 6 | * This file is ENTIRELY PROVISIONAL AND MUTABLE. If you think there is 7 | * something wrong, boneheaded, or otherwise daft then fork it and submit a pull request 8 | * 9 | */ 10 | 11 | digraph js_universe 12 | { 13 | // graph-wide config 14 | center=true; 15 | // overlap=scale; 16 | splines=true; 17 | // concentrate=true; 18 | label="An incomplete mapping of the --DHTML-- JS Universe\nPlease fork and submit pull requests github/slightlyoff/js-universe"; 19 | 20 | // "dark matter" 21 | dm [ label="\"Dark Matter\"\n\nperhaps 3-4x the size of\nthe visible universe?",shape=doublecircle ]; 22 | 23 | // developer to project/company relationships 24 | alexr -> INFA; 25 | alexr -> NW; 26 | alexr -> Dojo; 27 | alexr -> Jot; 28 | alexr -> RePubSub; 29 | alexr -> Sitepen; 30 | alexr -> Google; 31 | jpark -> ModPubSub; 32 | jpark -> RePubSub; 33 | jpark -> Dojo; 34 | jpark -> Renkoo; 35 | mda -> NW; 36 | mda -> Dojo; 37 | mda -> Burst; 38 | boogs -> Dojo; 39 | boogs -> Google; 40 | dpup -> Dojo; 41 | dpup -> DotNetSol; 42 | dpup -> _13p; 43 | dpup -> Google; 44 | dpup -> Gmail; 45 | dpup -> GPlus; 46 | dpup -> Closure; 47 | dpup -> Obvious; 48 | psowden -> Dojo; 49 | psowden -> Jot; 50 | dylan -> INFA; 51 | dylan -> Dojo; 52 | dylan -> Persevere; 53 | dylan -> dgrid; 54 | dylan -> Renkoo; 55 | dylan -> SitePen; 56 | ttrenka -> Dojo; 57 | ttrenka -> FM; 58 | ttrenka -> _13p; 59 | bratta -> Scriptomania; 60 | bratta -> DHTMLCentral; 61 | bratta -> DotNetSol; 62 | tscarfe -> DotNetSol; 63 | tscarfe -> DHTMLCentral; 64 | erik -> WebFX; 65 | erik -> Bindows; 66 | erik -> WebOS; 67 | erik -> Google; 68 | erik -> ExCanvas; 69 | erik -> Closure; 70 | erik -> Gmail; 71 | emil -> WebFX; 72 | emil -> WebOS; 73 | emil -> Google; 74 | emil -> ExCanvas; 75 | emil -> Closure; 76 | emil -> Gmail; 77 | mhall -> BrainJar; 78 | dsteinman -> DynAPI; 79 | dsteinman -> WebOS; // thanks, Erik! 80 | rrainwater -> DynAPI; 81 | rrainwater -> jsDOM; 82 | darink -> DomAPI; 83 | sporter -> GameLib; 84 | charlesk -> ISC; 85 | ashevdoff -> ISC; 86 | cw -> Gmail [ style=dotted,label="?" ]; 87 | cw -> Google; 88 | nkand -> Google; 89 | ilamb -> HalfBrain; 90 | ilamb -> AlphaBlox; 91 | ilamb -> Oddpost; 92 | ilamb -> Yahoo; 93 | ediamond -> HalfBrain; 94 | ediamond -> AlphaBlox; 95 | ediamond -> Oddpost; 96 | ediamond -> Yahoo; 97 | aplatti -> Oddpost; 98 | aplatti -> Yahoo; 99 | scottandrew -> ModPubSub; 100 | scottandrew -> DynAPI [ style=dotted,label="?" ]; // RAR: Not sure about this one 101 | mbazon -> HTMLArea; 102 | schontz -> NW; 103 | schontz -> INFA; 104 | schontz -> Jot; 105 | schontz -> _13p; 106 | schontz -> FM; 107 | michaelvo -> _13p; 108 | djoham -> XMLJS; 109 | mhoughton -> XMLJS; 110 | ssevertson -> XMLJS; 111 | julie -> Closure; 112 | julie -> ClosureEdit; 113 | julie -> Google; 114 | jvnoort -> XMLJS; 115 | inforat -> Tibet; 116 | idearat -> Tibet; 117 | kevlin -> KevLinDev 118 | gkadndorp -> Backbase; 119 | jhewitt -> SWAT; 120 | swerner -> qooxdoo; 121 | aecker -> qooxdoo; 122 | caugusti -> qooxdoo; 123 | ptracey -> jsxml; 124 | sstephenson -> Prototype; 125 | tfuchs -> Script_aculo_us; 126 | hfuecks -> JPSpan; 127 | syen -> TrimPath; 128 | bobi -> MochiKit; 129 | glish -> Yahoo; 130 | glish -> Flickr; 131 | swillison -> Yahoo; 132 | swillison -> Flickr; 133 | swillison -> Lanyrd; 134 | gmurphy -> Google; 135 | gmurphy -> ExCanvas; 136 | michaelvo -> Backbase; 137 | cal -> Yahoo; 138 | cal -> Flickr; 139 | cal -> Dojo; 140 | bradneuberg -> Dojo; 141 | bradneuberg -> Storage; 142 | bscott -> RICO; 143 | bscott -> Yahoo; 144 | bscott -> Yui; 145 | djames -> RICO; 146 | djames -> Yahoo; 147 | sschiller -> Yahoo; 148 | svisscher -> Q42; 149 | mwubben -> sIFR; 150 | mdavidson -> sIFR; 151 | sjmiles -> Dojo; 152 | sjmiles -> TurboAjax; 153 | dcrockford -> JSON; 154 | dcrockford -> JSLint; 155 | dcrockford -> Yahoo; 156 | smorais -> HotWired; 157 | ojan -> ClosureEdit; 158 | ojan -> Google; 159 | pcorcoran -> HotWired; 160 | pcorcoran -> ActiveSpace; 161 | pcorcoran -> Microsoft; 162 | smorais -> ActiveSpace; 163 | mwubben -> Q42; 164 | rdargahi -> ZATK; 165 | rdargahi -> Zimbra; 166 | amoore -> Yahoo; 167 | amoore -> Yui; 168 | msweeney -> Yahoo; 169 | msweeney -> Yui; 170 | nkoechley -> Yahoo; 171 | nkoechley -> Yui; 172 | jhan -> Yahoo; 173 | jhan -> Yui; 174 | speterson -> Yahoo; 175 | speterson -> Yui; 176 | tkloots -> Yahoo; 177 | tkloots -> Yui; 178 | tkloots -> Twitter; 179 | bkeese -> Dojo; 180 | jandrews -> Dojo; 181 | bskinner -> Dojo; 182 | ikantor -> Dojo; 183 | nroberts -> Dojo; 184 | micmath -> Glow; 185 | micmath -> JSDocToolkit; 186 | micmath -> BBC; 187 | jaffathecake -> Glow; 188 | jaffathecake -> BBC; 189 | jaffathecake -> Lanyrd; 190 | jaffathecake -> Google; 191 | phae -> Glow; 192 | phae -> BBC; 193 | baker -> Closure; 194 | baker -> Gmail; 195 | baker -> Google; 196 | jgwebber -> GWT; 197 | jgwebber -> Google; 198 | kellegous -> GWT; 199 | kellegous -> Google; 200 | zakas -> Yahoo; 201 | zakas -> Yui; 202 | kzyp -> Dojo; 203 | kzyp -> Persevere; 204 | kzyp -> dgrid; 205 | 206 | // project and company relationships 207 | INFA -> NW; 208 | INFA -> ISC [ label="Informatica licenses \nIsomorphic" ]; 209 | Jot -> Dojo [ label="Jot sponsors \nDojo" ]; 210 | Renkoo -> Dojo [ label="Renkoo\nsponsors\nDojo" ]; 211 | TurboAjax -> Dojo [ label="TurboAjax built\non Dojo" ]; 212 | Dojo -> MochiKit [ style=dotted, label="Mochi is Dojo-compatible" ]; 213 | Jot -> HTMLArea [ label="Jot sponsored \nHTMLArea" ]; 214 | BBC -> Glow [label="BBC built and open-sourced"] 215 | // Tibet -> ISC [ style=dotted ]; 216 | // FIXME: need to mine these links for info: 217 | // http://koranteng.blogspot.com/2004/07/on-rich-web-applications-alphablox-and.html 218 | // http://koranteng.blogspot.com/2004/10/on-gmail-and-dhtml-architecture-again.html 219 | HalfBrain -> AlphaBlox [ label="AlphaBlox acquires HalfBrain" ]; 220 | AlphaBlox -> IBM [ label="IBM bought AlphaBlox" ]; 221 | AlphaBlox -> Oddpost [ style=dotted ]; 222 | Oddpost -> Yahoo [ label="Y! bought Oddpost" ]; 223 | Google -> Gmail; 224 | Google -> Gmaps; 225 | Google -> GPlus; 226 | Google -> Closure; 227 | Google -> GWT [ label="Google buys Red Pill, becomes GWT" ]; 228 | Yahoo -> Flickr [ label="Y! bought Flickr" ]; 229 | ModPubSub -> RePubSub; 230 | GenInt -> TIBCO [ label="bought" ]; 231 | RoR -> Prototype [ label="uses" ]; 232 | Prototype -> Script_aculo_us [ label="Script.aculo.us\nrequires Prototype" ]; 233 | Prototype -> RICO [ label="RICO requires\nPrototype" ]; 234 | Q42 -> XOpus; 235 | TrimPath -> TrimJunction; 236 | TrimPath -> TrimSpreadsheet; 237 | TrimPath -> TrimQuery; 238 | TrimSpreadsheet -> NumSum; 239 | ActiveSpace -> Plumtree [ label="Plumtree bought ActiveSpace" ]; 240 | Plumtree -> BEA [ label="BEA bought Plumtree" ]; 241 | Zimbra -> ZATK [ label="Zimbra open-sourced ATK ('Kabuki'?)" ]; 242 | jscontrols -> WebFX; 243 | Plumtree -> jscontrols; 244 | Microsoft -> Atlas; 245 | Yahoo -> Yui; 246 | IBM -> Dojo; 247 | ClosureEdit -> Closure; 248 | SitePen -> Dojo; 249 | SitePen -> dgrid; 250 | SitePen -> Persevere; 251 | 252 | // developers 253 | psowden [ label="Paul Sowden" ]; 254 | mbazon [ label="Mihai Bazon" ]; 255 | ediamond [ label="Ethan Diamond" ]; 256 | ilamb [ label="Iain Lamb" ]; 257 | aplatti [ label="Adam Platti" ]; 258 | emil [ label="Emil A Eklund" ]; 259 | darink [ label="Darin Kadrioski" ]; 260 | ttrenka [ label="Tom Trenka" ]; 261 | erik [ label="Erik Arvidsson" ]; 262 | bratta [ label="Thomas Brattli" ]; 263 | mda [ label="Mark Anderson" ]; 264 | boogs [ label="Aaron Boodman" ]; 265 | alexr [ label="Alex Russell" ]; 266 | dylan [ label="Dylan Schiemann" ]; 267 | dpup [ label="Dan Pupius" ]; 268 | tscarfe [ label="Tim Scarfe" ]; 269 | dsteinman [ label="Dan Steinman" ]; 270 | mhall [ label="Mike Hall" ]; 271 | schampeon [ label="Steve Champeon" ]; 272 | sporter [ label="Scott Porter" ]; 273 | rrainwater [ label="Robert Rainwater" ]; 274 | charlesk [ label="Charles Kendrick" ]; 275 | scottandrew [ label="Scottandrew LePera" ]; 276 | cw [ label="Chris Wetherell" ]; 277 | jpark [ label="Joyce Park" ]; 278 | schontz [ label="David Schontzler" ]; 279 | michaelvo [ label="Michal van Ouwerkerk" ]; 280 | djoham [ label="David Joham" ]; 281 | mhoughton [ label="Micheal Houghton" ]; 282 | ssevertson [ label="Scott Severtson" ]; 283 | jvnoort [ label="Jon van Noort" ]; 284 | idearat [ label="Scott Shattuck" ]; 285 | inforat [ label="William J. Edney" ]; 286 | kevlin [ label="Kevin Lindsey" ]; 287 | ashevdoff [ label="Alex Shvedoff" ]; 288 | gkadndorp [ label="Gerbert Kaandorp" ]; 289 | jhewitt [ label="Joe Hewitt" ]; 290 | swerner [ label="Sebastian Werner" ]; 291 | aecker [ label="Andreas Ecker" ]; 292 | caugusti [ label="Claus Augusti" ]; 293 | ptracey [ label="Peter Tracey" ]; 294 | sstephenson [ label="Sam Stephenson" ]; 295 | hfuecks [ label="Harry Fuecks" ]; 296 | tfuchs [ label="Thomas Fuchs" ]; 297 | syen [ label="Steve Yen" ]; 298 | bobi [ label="Bob Ippolito" ]; 299 | nkand [ label="Neil Kandalgaonkar" ]; 300 | glish [ label="Eric Costello" ]; 301 | swillison [ label="Simon Willison" ]; 302 | gmurphy [ label="Glen Murphy" ]; 303 | cal [ label="Cal Henderson" ]; 304 | bradneuberg [ label="Brad Neuberg" ]; 305 | bscott [ label="Bill Scott" ]; 306 | djames [ label="Darren James" ]; 307 | sschiller [ label="Scott Schiller" ]; 308 | svisscher [ label="Sjoerd Visscher" ]; 309 | mwubben [ label="Mark Wubben" ]; 310 | mdavidson [ label="Mike Davidson" ]; 311 | sjmiles [ label="Scott Miles" ]; 312 | jgwebber [ label="Joel Webber" ]; 313 | dcrockford [ label="Douglas Crockford" ]; 314 | smorais [ label="Stephan Morais" ]; 315 | pcorcoran [ label="Patrick Corcoran" ]; 316 | rdargahi [ label="Ross Dargahi" ]; 317 | amoore [ label="Adam Moore" ]; 318 | msweeney [ label="Matt Sweeney" ]; 319 | nkoechley [ label="Nate Koechley" ]; 320 | jhan [ label="Jenny Han" ]; 321 | speterson [ label="Steven Peterson" ]; 322 | tkloots [ label="Todd Kloots" ]; 323 | bkeese [ label="Bill Keese" ]; 324 | jandrews [ label="Jesse Andrews" ]; 325 | bskinner [ label="Brian Skinner" ]; 326 | ikantor [ label="Ilia Kantor" ]; 327 | nroberts [ label="Neil Roberts" ]; 328 | micmath [ label="Michael Mathews"]; 329 | jaffathecake [ label="Jake Archibald"]; 330 | phae [ label="Frances Berriman"]; 331 | julie [ label="Julie Parent"]; 332 | ojan [ label="Ojan Vafai"]; 333 | baker [ label="Greg Baker"]; 334 | kellegous [ label="Kelly Norton"]; 335 | zakas [ label="Nicholas C. Zakas"]; 336 | kzyp [ label="Kris Zyp"]; 337 | 338 | // companies 339 | DotNetSol [ label="Dot Net\nSolutions",shape=box ]; 340 | Google [ label="Google",shape=box ]; 341 | Yahoo [ label="Yahoo!",shape=box ]; 342 | Jot [ label="JotSpot",shape=box ]; 343 | INFA [ label="Informatica Corp.",shape=box ]; 344 | IBM [ shape=box ]; 345 | TIBCO [ shape=box ]; 346 | GenInt [ label="General Interface" ]; 347 | Backbase [ label="Backbase",shape=box ]; 348 | Renkoo [ label="Renkoo",shape=box ]; 349 | TurboAjax [ label="TurboAjax Group",shape=box ]; 350 | Q42 [ label="Q42",shape=box ]; 351 | NumSum [ shape=box ]; 352 | HotWired [ shape=box ]; 353 | ActiveSpace [ shape=box ]; 354 | Plumtree [ shape=box ]; 355 | BEA [ shape=box ]; 356 | Microsoft [ shape=box ]; 357 | Zimbra [ shape=box ]; 358 | Lanyrd [ shape=box]; 359 | BBC [ shape=box ]; 360 | SitePen [ label="SitePen", shape=box]; 361 | Twitter [ shape=box]; 362 | 363 | // projects and products 364 | Storage [ label="AMASS",shape=diamond ]; 365 | jsxml [ shape=diamond ]; 366 | HTMLArea [ shape=diamond ]; 367 | AlphaBlox [ shape=diamond ]; 368 | HalfBrain [ shape=diamond ]; 369 | Oddpost [ shape=diamond ]; 370 | Scriptomania [ shape=diamond ]; 371 | DomAPI [ shape=diamond ]; 372 | DynAPI [ shape=diamond ]; 373 | GameLib [ shape=diamond ]; 374 | Bindows [ shape=diamond ]; 375 | jsDOM [ shape=diamond ]; 376 | qooxdoo [ shape=diamond ]; 377 | XMLJS [ label="XML for Script",shape=diamond ]; 378 | Tibet [ label="TIBET",shape=diamond ]; 379 | ModPubSub [ label="mod_pubsub",shape=diamond ]; 380 | RePubSub [ label="re_pubsub",shape=diamond ]; 381 | Gmail [ label="GMail",shape=diamond ]; 382 | Gmaps [ label="Google Maps ",shape=diamond ]; 383 | GPlus [ label="Google+",shape=diamond ]; 384 | BrainJar [ label="Brain Jar",shape=diamond ]; 385 | FM [ label="f(m)",shape=diamond ]; 386 | WebFX [ label="WebFX.eae.net",shape=diamond ]; 387 | jscontrols [ label="WebFX jscontrols",shape=diamond ]; 388 | Burst [ label="Burstlib",shape=diamond ]; 389 | Dojo [ label="Dojo",shape=diamond ]; 390 | NW [ label="netWindows",shape=diamond ]; 391 | ISC [ label="Isomorphic Inc.",shape=diamond ]; 392 | WebOS [ label="WebOS.com",shape=diamond ]; 393 | DHTMLCentral [ label="DHTMLCentral.com",shape=diamond ]; 394 | _13p [ label="13th Parallel Library\n(unreleased)",shape=diamond ]; 395 | KevLinDev [ label="kevlindev.com",shape=diamond ]; 396 | ActiveWidgets [ label="ActiveWidgets",shape=diamond ]; 397 | SWAT [ shape=diamond ]; 398 | Obvious [ shape=box ]; 399 | Prototype [ shape=diamond ]; 400 | RoR [ label="Ruby On Rails",shape=diamond ]; 401 | Script_aculo_us [ label="Script.aculo.us",shape=diamond ]; 402 | RICO [ label="OpenRICO",shape=diamond ]; 403 | TrimPath [ shape=diamond ]; 404 | TrimJunction [ shape=diamond ]; 405 | TrimQuery [ shape=diamond ]; 406 | TrimSpreadsheet [ shape=diamond ]; 407 | MochiKit [ shape=diamond ]; 408 | JPSpan [ shape=diamond ]; 409 | Flickr [ shape=diamond ]; 410 | XOpus [ shape=diamond ]; 411 | sIFR [ shape=diamond ]; 412 | JSON [ shape=diamond ]; 413 | JSLint [ shape=diamond ]; 414 | ZATK [ label="Zimbra AjaxTK",shape=diamond ]; 415 | Atlas [ label="Microsoft Atlas",shape=diamond ]; 416 | Yui [ label="Yahoo UI",shape=diamond ]; 417 | Glow [ label="BBC Glow",shape=diamond]; 418 | JSDocToolkit [label="JSDocToolkit",shape=diamond]; 419 | ExCanvas [label="ExplorerCanvas",shape=diamond]; 420 | Closure [shape=diamond]; 421 | ClosureEdit [label="Closure Editor",shape=diamond]; 422 | GWT [ label="GWT",shape=diamond ]; 423 | dgrid [ label="dgrid",shape=diamond ]; 424 | Persevere [ label="Persevere",shape=diamond ]; 425 | } 426 | 427 | // vim:ts=2:et:ai 428 | -------------------------------------------------------------------------------- /js-universe.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/js-universe/235c2638042154f27d26ffda354695ae7ed5d3e0/js-universe.pdf -------------------------------------------------------------------------------- /js-universe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slightlyoff/js-universe/235c2638042154f27d26ffda354695ae7ed5d3e0/js-universe.png -------------------------------------------------------------------------------- /js-universe.svg: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | js_universe 11 | 12 | An incomplete mapping of the --DHTML-- JS Universe 13 | Please fork and submit pull requests github/slightlyoff/js-universe 14 | 15 | dm 16 | 17 | 18 | "Dark Matter" 19 | perhaps 3-4x the size of 20 | the visible universe? 21 | 22 | 23 | alexr 24 | 25 | Alex Russell 26 | 27 | 28 | INFA 29 | 30 | Informatica Corp. 31 | 32 | 33 | alexr->INFA 34 | 35 | 36 | 37 | 38 | NW 39 | 40 | netWindows 41 | 42 | 43 | alexr->NW 44 | 45 | 46 | 47 | 48 | Dojo 49 | 50 | Dojo 51 | 52 | 53 | alexr->Dojo 54 | 55 | 56 | 57 | 58 | Jot 59 | 60 | JotSpot 61 | 62 | 63 | alexr->Jot 64 | 65 | 66 | 67 | 68 | RePubSub 69 | 70 | re_pubsub 71 | 72 | 73 | alexr->RePubSub 74 | 75 | 76 | 77 | 78 | Sitepen 79 | 80 | Sitepen 81 | 82 | 83 | alexr->Sitepen 84 | 85 | 86 | 87 | 88 | Google 89 | 90 | Google 91 | 92 | 93 | alexr->Google 94 | 95 | 96 | 97 | 98 | INFA->NW 99 | 100 | 101 | 102 | 103 | ISC 104 | 105 | Isomorphic Inc. 106 | 107 | 108 | INFA->ISC 109 | 110 | 111 | Informatica licenses 112 | Isomorphic 113 | 114 | 115 | MochiKit 116 | 117 | MochiKit 118 | 119 | 120 | Dojo->MochiKit 121 | 122 | 123 | Mochi is Dojo-compatible 124 | 125 | 126 | Jot->Dojo 127 | 128 | 129 | Jot sponsors 130 | Dojo 131 | 132 | 133 | HTMLArea 134 | 135 | HTMLArea 136 | 137 | 138 | Jot->HTMLArea 139 | 140 | 141 | Jot sponsored 142 | HTMLArea 143 | 144 | 145 | Gmail 146 | 147 | GMail 148 | 149 | 150 | Google->Gmail 151 | 152 | 153 | 154 | 155 | GPlus 156 | 157 | Google+ 158 | 159 | 160 | Google->GPlus 161 | 162 | 163 | 164 | 165 | Closure 166 | 167 | Closure 168 | 169 | 170 | Google->Closure 171 | 172 | 173 | 174 | 175 | GWT 176 | 177 | GWT 178 | 179 | 180 | Google->GWT 181 | 182 | 183 | Google buys Red Pill, becomes GWT 184 | 185 | 186 | Gmaps 187 | 188 | Google Maps 189 | 190 | 191 | Google->Gmaps 192 | 193 | 194 | 195 | 196 | jpark 197 | 198 | Joyce Park 199 | 200 | 201 | jpark->Dojo 202 | 203 | 204 | 205 | 206 | jpark->RePubSub 207 | 208 | 209 | 210 | 211 | ModPubSub 212 | 213 | mod_pubsub 214 | 215 | 216 | jpark->ModPubSub 217 | 218 | 219 | 220 | 221 | Renkoo 222 | 223 | Renkoo 224 | 225 | 226 | jpark->Renkoo 227 | 228 | 229 | 230 | 231 | ModPubSub->RePubSub 232 | 233 | 234 | 235 | 236 | Renkoo->Dojo 237 | 238 | 239 | Renkoo 240 | sponsors 241 | Dojo 242 | 243 | 244 | mda 245 | 246 | Mark Anderson 247 | 248 | 249 | mda->NW 250 | 251 | 252 | 253 | 254 | mda->Dojo 255 | 256 | 257 | 258 | 259 | Burst 260 | 261 | Burstlib 262 | 263 | 264 | mda->Burst 265 | 266 | 267 | 268 | 269 | boogs 270 | 271 | Aaron Boodman 272 | 273 | 274 | boogs->Dojo 275 | 276 | 277 | 278 | 279 | boogs->Google 280 | 281 | 282 | 283 | 284 | dpup 285 | 286 | Dan Pupius 287 | 288 | 289 | dpup->Dojo 290 | 291 | 292 | 293 | 294 | dpup->Google 295 | 296 | 297 | 298 | 299 | DotNetSol 300 | 301 | Dot Net 302 | Solutions 303 | 304 | 305 | dpup->DotNetSol 306 | 307 | 308 | 309 | 310 | _13p 311 | 312 | 13th Parallel Library 313 | (unreleased) 314 | 315 | 316 | dpup->_13p 317 | 318 | 319 | 320 | 321 | dpup->Gmail 322 | 323 | 324 | 325 | 326 | dpup->GPlus 327 | 328 | 329 | 330 | 331 | dpup->Closure 332 | 333 | 334 | 335 | 336 | Obvious 337 | 338 | Obvious 339 | 340 | 341 | dpup->Obvious 342 | 343 | 344 | 345 | 346 | psowden 347 | 348 | Paul Sowden 349 | 350 | 351 | psowden->Dojo 352 | 353 | 354 | 355 | 356 | psowden->Jot 357 | 358 | 359 | 360 | 361 | dylan 362 | 363 | Dylan Schiemann 364 | 365 | 366 | dylan->INFA 367 | 368 | 369 | 370 | 371 | dylan->Dojo 372 | 373 | 374 | 375 | 376 | dylan->Sitepen 377 | 378 | 379 | 380 | 381 | dylan->Renkoo 382 | 383 | 384 | 385 | 386 | ttrenka 387 | 388 | Tom Trenka 389 | 390 | 391 | ttrenka->Dojo 392 | 393 | 394 | 395 | 396 | ttrenka->_13p 397 | 398 | 399 | 400 | 401 | FM 402 | 403 | f(m) 404 | 405 | 406 | ttrenka->FM 407 | 408 | 409 | 410 | 411 | bratta 412 | 413 | Thomas Brattli 414 | 415 | 416 | bratta->DotNetSol 417 | 418 | 419 | 420 | 421 | Scriptomania 422 | 423 | Scriptomania 424 | 425 | 426 | bratta->Scriptomania 427 | 428 | 429 | 430 | 431 | DHTMLCentral 432 | 433 | DHTMLCentral.com 434 | 435 | 436 | bratta->DHTMLCentral 437 | 438 | 439 | 440 | 441 | tscarfe 442 | 443 | Tim Scarfe 444 | 445 | 446 | tscarfe->DotNetSol 447 | 448 | 449 | 450 | 451 | tscarfe->DHTMLCentral 452 | 453 | 454 | 455 | 456 | erik 457 | 458 | Erik Arvidsson 459 | 460 | 461 | erik->Google 462 | 463 | 464 | 465 | 466 | erik->Gmail 467 | 468 | 469 | 470 | 471 | erik->Closure 472 | 473 | 474 | 475 | 476 | WebFX 477 | 478 | WebFX.eae.net 479 | 480 | 481 | erik->WebFX 482 | 483 | 484 | 485 | 486 | Bindows 487 | 488 | Bindows 489 | 490 | 491 | erik->Bindows 492 | 493 | 494 | 495 | 496 | WebOS 497 | 498 | WebOS.com 499 | 500 | 501 | erik->WebOS 502 | 503 | 504 | 505 | 506 | ExCanvas 507 | 508 | ExplorerCanvas 509 | 510 | 511 | erik->ExCanvas 512 | 513 | 514 | 515 | 516 | emil 517 | 518 | Emil A Eklund 519 | 520 | 521 | emil->Google 522 | 523 | 524 | 525 | 526 | emil->Gmail 527 | 528 | 529 | 530 | 531 | emil->Closure 532 | 533 | 534 | 535 | 536 | emil->WebFX 537 | 538 | 539 | 540 | 541 | emil->WebOS 542 | 543 | 544 | 545 | 546 | emil->ExCanvas 547 | 548 | 549 | 550 | 551 | mhall 552 | 553 | Mike Hall 554 | 555 | 556 | BrainJar 557 | 558 | Brain Jar 559 | 560 | 561 | mhall->BrainJar 562 | 563 | 564 | 565 | 566 | dsteinman 567 | 568 | Dan Steinman 569 | 570 | 571 | dsteinman->WebOS 572 | 573 | 574 | 575 | 576 | DynAPI 577 | 578 | DynAPI 579 | 580 | 581 | dsteinman->DynAPI 582 | 583 | 584 | 585 | 586 | rrainwater 587 | 588 | Robert Rainwater 589 | 590 | 591 | rrainwater->DynAPI 592 | 593 | 594 | 595 | 596 | jsDOM 597 | 598 | jsDOM 599 | 600 | 601 | rrainwater->jsDOM 602 | 603 | 604 | 605 | 606 | darink 607 | 608 | Darin Kadrioski 609 | 610 | 611 | DomAPI 612 | 613 | DomAPI 614 | 615 | 616 | darink->DomAPI 617 | 618 | 619 | 620 | 621 | sporter 622 | 623 | Scott Porter 624 | 625 | 626 | GameLib 627 | 628 | GameLib 629 | 630 | 631 | sporter->GameLib 632 | 633 | 634 | 635 | 636 | charlesk 637 | 638 | Charles Kendrick 639 | 640 | 641 | charlesk->ISC 642 | 643 | 644 | 645 | 646 | ashevdoff 647 | 648 | Alex Shvedoff 649 | 650 | 651 | ashevdoff->ISC 652 | 653 | 654 | 655 | 656 | cw 657 | 658 | Chris Wetherell 659 | 660 | 661 | cw->Google 662 | 663 | 664 | 665 | 666 | cw->Gmail 667 | 668 | 669 | ? 670 | 671 | 672 | nkand 673 | 674 | Neil Kandalgaonkar 675 | 676 | 677 | nkand->Google 678 | 679 | 680 | 681 | 682 | ilamb 683 | 684 | Iain Lamb 685 | 686 | 687 | HalfBrain 688 | 689 | HalfBrain 690 | 691 | 692 | ilamb->HalfBrain 693 | 694 | 695 | 696 | 697 | AlphaBlox 698 | 699 | AlphaBlox 700 | 701 | 702 | ilamb->AlphaBlox 703 | 704 | 705 | 706 | 707 | Oddpost 708 | 709 | Oddpost 710 | 711 | 712 | ilamb->Oddpost 713 | 714 | 715 | 716 | 717 | Yahoo 718 | 719 | Yahoo! 720 | 721 | 722 | ilamb->Yahoo 723 | 724 | 725 | 726 | 727 | HalfBrain->AlphaBlox 728 | 729 | 730 | AlphaBlox acquires HalfBrain 731 | 732 | 733 | AlphaBlox->Oddpost 734 | 735 | 736 | 737 | 738 | IBM 739 | 740 | IBM 741 | 742 | 743 | AlphaBlox->IBM 744 | 745 | 746 | IBM bought AlphaBlox 747 | 748 | 749 | Oddpost->Yahoo 750 | 751 | 752 | Y! bought Oddpost 753 | 754 | 755 | Flickr 756 | 757 | Flickr 758 | 759 | 760 | Yahoo->Flickr 761 | 762 | 763 | Y! bought Flickr 764 | 765 | 766 | Yui 767 | 768 | Yahoo UI 769 | 770 | 771 | Yahoo->Yui 772 | 773 | 774 | 775 | 776 | ediamond 777 | 778 | Ethan Diamond 779 | 780 | 781 | ediamond->HalfBrain 782 | 783 | 784 | 785 | 786 | ediamond->AlphaBlox 787 | 788 | 789 | 790 | 791 | ediamond->Oddpost 792 | 793 | 794 | 795 | 796 | ediamond->Yahoo 797 | 798 | 799 | 800 | 801 | aplatti 802 | 803 | Adam Platti 804 | 805 | 806 | aplatti->Oddpost 807 | 808 | 809 | 810 | 811 | aplatti->Yahoo 812 | 813 | 814 | 815 | 816 | scottandrew 817 | 818 | Scottandrew LePera 819 | 820 | 821 | scottandrew->ModPubSub 822 | 823 | 824 | 825 | 826 | scottandrew->DynAPI 827 | 828 | 829 | ? 830 | 831 | 832 | mbazon 833 | 834 | Mihai Bazon 835 | 836 | 837 | mbazon->HTMLArea 838 | 839 | 840 | 841 | 842 | schontz 843 | 844 | David Schontzler 845 | 846 | 847 | schontz->INFA 848 | 849 | 850 | 851 | 852 | schontz->NW 853 | 854 | 855 | 856 | 857 | schontz->Jot 858 | 859 | 860 | 861 | 862 | schontz->_13p 863 | 864 | 865 | 866 | 867 | schontz->FM 868 | 869 | 870 | 871 | 872 | michaelvo 873 | 874 | Michal van Ouwerkerk 875 | 876 | 877 | michaelvo->_13p 878 | 879 | 880 | 881 | 882 | Backbase 883 | 884 | Backbase 885 | 886 | 887 | michaelvo->Backbase 888 | 889 | 890 | 891 | 892 | djoham 893 | 894 | David Joham 895 | 896 | 897 | XMLJS 898 | 899 | XML for Script 900 | 901 | 902 | djoham->XMLJS 903 | 904 | 905 | 906 | 907 | mhoughton 908 | 909 | Micheal Houghton 910 | 911 | 912 | mhoughton->XMLJS 913 | 914 | 915 | 916 | 917 | ssevertson 918 | 919 | Scott Severtson 920 | 921 | 922 | ssevertson->XMLJS 923 | 924 | 925 | 926 | 927 | julie 928 | 929 | Julie Parent 930 | 931 | 932 | julie->Google 933 | 934 | 935 | 936 | 937 | julie->Closure 938 | 939 | 940 | 941 | 942 | ClosureEdit 943 | 944 | Closure Editor 945 | 946 | 947 | julie->ClosureEdit 948 | 949 | 950 | 951 | 952 | ClosureEdit->Closure 953 | 954 | 955 | 956 | 957 | jvnoort 958 | 959 | Jon van Noort 960 | 961 | 962 | jvnoort->XMLJS 963 | 964 | 965 | 966 | 967 | inforat 968 | 969 | William J. Edney 970 | 971 | 972 | Tibet 973 | 974 | TIBET 975 | 976 | 977 | inforat->Tibet 978 | 979 | 980 | 981 | 982 | idearat 983 | 984 | Scott Shattuck 985 | 986 | 987 | idearat->Tibet 988 | 989 | 990 | 991 | 992 | kevlin 993 | 994 | Kevin Lindsey 995 | 996 | 997 | KevLinDev 998 | 999 | kevlindev.com 1000 | 1001 | 1002 | kevlin->KevLinDev 1003 | 1004 | 1005 | 1006 | 1007 | gkadndorp 1008 | 1009 | Gerbert Kaandorp 1010 | 1011 | 1012 | gkadndorp->Backbase 1013 | 1014 | 1015 | 1016 | 1017 | jhewitt 1018 | 1019 | Joe Hewitt 1020 | 1021 | 1022 | SWAT 1023 | 1024 | SWAT 1025 | 1026 | 1027 | jhewitt->SWAT 1028 | 1029 | 1030 | 1031 | 1032 | swerner 1033 | 1034 | Sebastian Werner 1035 | 1036 | 1037 | qooxdoo 1038 | 1039 | qooxdoo 1040 | 1041 | 1042 | swerner->qooxdoo 1043 | 1044 | 1045 | 1046 | 1047 | aecker 1048 | 1049 | Andreas Ecker 1050 | 1051 | 1052 | aecker->qooxdoo 1053 | 1054 | 1055 | 1056 | 1057 | caugusti 1058 | 1059 | Claus Augusti 1060 | 1061 | 1062 | caugusti->qooxdoo 1063 | 1064 | 1065 | 1066 | 1067 | ptracey 1068 | 1069 | Peter Tracey 1070 | 1071 | 1072 | jsxml 1073 | 1074 | jsxml 1075 | 1076 | 1077 | ptracey->jsxml 1078 | 1079 | 1080 | 1081 | 1082 | sstephenson 1083 | 1084 | Sam Stephenson 1085 | 1086 | 1087 | Prototype 1088 | 1089 | Prototype 1090 | 1091 | 1092 | sstephenson->Prototype 1093 | 1094 | 1095 | 1096 | 1097 | Script_aculo_us 1098 | 1099 | Script.aculo.us 1100 | 1101 | 1102 | Prototype->Script_aculo_us 1103 | 1104 | 1105 | Script.aculo.us 1106 | requires Prototype 1107 | 1108 | 1109 | RICO 1110 | 1111 | OpenRICO 1112 | 1113 | 1114 | Prototype->RICO 1115 | 1116 | 1117 | RICO requires 1118 | Prototype 1119 | 1120 | 1121 | tfuchs 1122 | 1123 | Thomas Fuchs 1124 | 1125 | 1126 | tfuchs->Script_aculo_us 1127 | 1128 | 1129 | 1130 | 1131 | hfuecks 1132 | 1133 | Harry Fuecks 1134 | 1135 | 1136 | JPSpan 1137 | 1138 | JPSpan 1139 | 1140 | 1141 | hfuecks->JPSpan 1142 | 1143 | 1144 | 1145 | 1146 | syen 1147 | 1148 | Steve Yen 1149 | 1150 | 1151 | TrimPath 1152 | 1153 | TrimPath 1154 | 1155 | 1156 | syen->TrimPath 1157 | 1158 | 1159 | 1160 | 1161 | TrimJunction 1162 | 1163 | TrimJunction 1164 | 1165 | 1166 | TrimPath->TrimJunction 1167 | 1168 | 1169 | 1170 | 1171 | TrimSpreadsheet 1172 | 1173 | TrimSpreadsheet 1174 | 1175 | 1176 | TrimPath->TrimSpreadsheet 1177 | 1178 | 1179 | 1180 | 1181 | TrimQuery 1182 | 1183 | TrimQuery 1184 | 1185 | 1186 | TrimPath->TrimQuery 1187 | 1188 | 1189 | 1190 | 1191 | bobi 1192 | 1193 | Bob Ippolito 1194 | 1195 | 1196 | bobi->MochiKit 1197 | 1198 | 1199 | 1200 | 1201 | glish 1202 | 1203 | Eric Costello 1204 | 1205 | 1206 | glish->Yahoo 1207 | 1208 | 1209 | 1210 | 1211 | glish->Flickr 1212 | 1213 | 1214 | 1215 | 1216 | swillison 1217 | 1218 | Simon Willison 1219 | 1220 | 1221 | swillison->Yahoo 1222 | 1223 | 1224 | 1225 | 1226 | swillison->Flickr 1227 | 1228 | 1229 | 1230 | 1231 | Lanyrd 1232 | 1233 | Lanyrd 1234 | 1235 | 1236 | swillison->Lanyrd 1237 | 1238 | 1239 | 1240 | 1241 | gmurphy 1242 | 1243 | Glen Murphy 1244 | 1245 | 1246 | gmurphy->Google 1247 | 1248 | 1249 | 1250 | 1251 | gmurphy->ExCanvas 1252 | 1253 | 1254 | 1255 | 1256 | cal 1257 | 1258 | Cal Henderson 1259 | 1260 | 1261 | cal->Dojo 1262 | 1263 | 1264 | 1265 | 1266 | cal->Yahoo 1267 | 1268 | 1269 | 1270 | 1271 | cal->Flickr 1272 | 1273 | 1274 | 1275 | 1276 | bradneuberg 1277 | 1278 | Brad Neuberg 1279 | 1280 | 1281 | bradneuberg->Dojo 1282 | 1283 | 1284 | 1285 | 1286 | Storage 1287 | 1288 | AMASS 1289 | 1290 | 1291 | bradneuberg->Storage 1292 | 1293 | 1294 | 1295 | 1296 | bscott 1297 | 1298 | Bill Scott 1299 | 1300 | 1301 | bscott->Yahoo 1302 | 1303 | 1304 | 1305 | 1306 | bscott->RICO 1307 | 1308 | 1309 | 1310 | 1311 | bscott->Yui 1312 | 1313 | 1314 | 1315 | 1316 | djames 1317 | 1318 | Darren James 1319 | 1320 | 1321 | djames->Yahoo 1322 | 1323 | 1324 | 1325 | 1326 | djames->RICO 1327 | 1328 | 1329 | 1330 | 1331 | sschiller 1332 | 1333 | Scott Schiller 1334 | 1335 | 1336 | sschiller->Yahoo 1337 | 1338 | 1339 | 1340 | 1341 | svisscher 1342 | 1343 | Sjoerd Visscher 1344 | 1345 | 1346 | Q42 1347 | 1348 | Q42 1349 | 1350 | 1351 | svisscher->Q42 1352 | 1353 | 1354 | 1355 | 1356 | XOpus 1357 | 1358 | XOpus 1359 | 1360 | 1361 | Q42->XOpus 1362 | 1363 | 1364 | 1365 | 1366 | mwubben 1367 | 1368 | Mark Wubben 1369 | 1370 | 1371 | mwubben->Q42 1372 | 1373 | 1374 | 1375 | 1376 | sIFR 1377 | 1378 | sIFR 1379 | 1380 | 1381 | mwubben->sIFR 1382 | 1383 | 1384 | 1385 | 1386 | mdavidson 1387 | 1388 | Mike Davidson 1389 | 1390 | 1391 | mdavidson->sIFR 1392 | 1393 | 1394 | 1395 | 1396 | sjmiles 1397 | 1398 | Scott Miles 1399 | 1400 | 1401 | sjmiles->Dojo 1402 | 1403 | 1404 | 1405 | 1406 | TurboAjax 1407 | 1408 | TurboAjax Group 1409 | 1410 | 1411 | sjmiles->TurboAjax 1412 | 1413 | 1414 | 1415 | 1416 | TurboAjax->Dojo 1417 | 1418 | 1419 | TurboAjax built 1420 | on Dojo 1421 | 1422 | 1423 | dcrockford 1424 | 1425 | Douglas Crockford 1426 | 1427 | 1428 | dcrockford->Yahoo 1429 | 1430 | 1431 | 1432 | 1433 | JSON 1434 | 1435 | JSON 1436 | 1437 | 1438 | dcrockford->JSON 1439 | 1440 | 1441 | 1442 | 1443 | JSLint 1444 | 1445 | JSLint 1446 | 1447 | 1448 | dcrockford->JSLint 1449 | 1450 | 1451 | 1452 | 1453 | smorais 1454 | 1455 | Stephan Morais 1456 | 1457 | 1458 | HotWired 1459 | 1460 | HotWired 1461 | 1462 | 1463 | smorais->HotWired 1464 | 1465 | 1466 | 1467 | 1468 | ActiveSpace 1469 | 1470 | ActiveSpace 1471 | 1472 | 1473 | smorais->ActiveSpace 1474 | 1475 | 1476 | 1477 | 1478 | ojan 1479 | 1480 | Ojan Vafai 1481 | 1482 | 1483 | ojan->Google 1484 | 1485 | 1486 | 1487 | 1488 | ojan->ClosureEdit 1489 | 1490 | 1491 | 1492 | 1493 | pcorcoran 1494 | 1495 | Patrick Corcoran 1496 | 1497 | 1498 | pcorcoran->HotWired 1499 | 1500 | 1501 | 1502 | 1503 | pcorcoran->ActiveSpace 1504 | 1505 | 1506 | 1507 | 1508 | Microsoft 1509 | 1510 | Microsoft 1511 | 1512 | 1513 | pcorcoran->Microsoft 1514 | 1515 | 1516 | 1517 | 1518 | Plumtree 1519 | 1520 | Plumtree 1521 | 1522 | 1523 | ActiveSpace->Plumtree 1524 | 1525 | 1526 | Plumtree bought ActiveSpace 1527 | 1528 | 1529 | Atlas 1530 | 1531 | Microsoft Atlas 1532 | 1533 | 1534 | Microsoft->Atlas 1535 | 1536 | 1537 | 1538 | 1539 | rdargahi 1540 | 1541 | Ross Dargahi 1542 | 1543 | 1544 | ZATK 1545 | 1546 | Zimbra AjaxTK 1547 | 1548 | 1549 | rdargahi->ZATK 1550 | 1551 | 1552 | 1553 | 1554 | Zimbra 1555 | 1556 | Zimbra 1557 | 1558 | 1559 | rdargahi->Zimbra 1560 | 1561 | 1562 | 1563 | 1564 | Zimbra->ZATK 1565 | 1566 | 1567 | Zimbra open-sourced ATK ('Kabuki'?) 1568 | 1569 | 1570 | amoore 1571 | 1572 | Adam Moore 1573 | 1574 | 1575 | amoore->Yahoo 1576 | 1577 | 1578 | 1579 | 1580 | amoore->Yui 1581 | 1582 | 1583 | 1584 | 1585 | msweeney 1586 | 1587 | Matt Sweeney 1588 | 1589 | 1590 | msweeney->Yahoo 1591 | 1592 | 1593 | 1594 | 1595 | msweeney->Yui 1596 | 1597 | 1598 | 1599 | 1600 | nkoechley 1601 | 1602 | Nate Koechley 1603 | 1604 | 1605 | nkoechley->Yahoo 1606 | 1607 | 1608 | 1609 | 1610 | nkoechley->Yui 1611 | 1612 | 1613 | 1614 | 1615 | jhan 1616 | 1617 | Jenny Han 1618 | 1619 | 1620 | jhan->Yahoo 1621 | 1622 | 1623 | 1624 | 1625 | jhan->Yui 1626 | 1627 | 1628 | 1629 | 1630 | speterson 1631 | 1632 | Steven Peterson 1633 | 1634 | 1635 | speterson->Yahoo 1636 | 1637 | 1638 | 1639 | 1640 | speterson->Yui 1641 | 1642 | 1643 | 1644 | 1645 | tkloots 1646 | 1647 | Todd Kloots 1648 | 1649 | 1650 | tkloots->Yahoo 1651 | 1652 | 1653 | 1654 | 1655 | tkloots->Yui 1656 | 1657 | 1658 | 1659 | 1660 | Twitter 1661 | 1662 | Twitter 1663 | 1664 | 1665 | tkloots->Twitter 1666 | 1667 | 1668 | 1669 | 1670 | bkeese 1671 | 1672 | Bill Keese 1673 | 1674 | 1675 | bkeese->Dojo 1676 | 1677 | 1678 | 1679 | 1680 | jandrews 1681 | 1682 | Jesse Andrews 1683 | 1684 | 1685 | jandrews->Dojo 1686 | 1687 | 1688 | 1689 | 1690 | bskinner 1691 | 1692 | Brian Skinner 1693 | 1694 | 1695 | bskinner->Dojo 1696 | 1697 | 1698 | 1699 | 1700 | ikantor 1701 | 1702 | Ilia Kantor 1703 | 1704 | 1705 | ikantor->Dojo 1706 | 1707 | 1708 | 1709 | 1710 | nroberts 1711 | 1712 | Neil Roberts 1713 | 1714 | 1715 | nroberts->Dojo 1716 | 1717 | 1718 | 1719 | 1720 | micmath 1721 | 1722 | Michael Mathews 1723 | 1724 | 1725 | Glow 1726 | 1727 | BBC Glow 1728 | 1729 | 1730 | micmath->Glow 1731 | 1732 | 1733 | 1734 | 1735 | JSDocToolkit 1736 | 1737 | JSDocToolkit 1738 | 1739 | 1740 | micmath->JSDocToolkit 1741 | 1742 | 1743 | 1744 | 1745 | BBC 1746 | 1747 | BBC 1748 | 1749 | 1750 | micmath->BBC 1751 | 1752 | 1753 | 1754 | 1755 | BBC->Glow 1756 | 1757 | 1758 | BBC built and open-sourced 1759 | 1760 | 1761 | jaffathecake 1762 | 1763 | Jake Archibald 1764 | 1765 | 1766 | jaffathecake->Google 1767 | 1768 | 1769 | 1770 | 1771 | jaffathecake->Lanyrd 1772 | 1773 | 1774 | 1775 | 1776 | jaffathecake->Glow 1777 | 1778 | 1779 | 1780 | 1781 | jaffathecake->BBC 1782 | 1783 | 1784 | 1785 | 1786 | phae 1787 | 1788 | Frances Berriman 1789 | 1790 | 1791 | phae->Glow 1792 | 1793 | 1794 | 1795 | 1796 | phae->BBC 1797 | 1798 | 1799 | 1800 | 1801 | baker 1802 | 1803 | Greg Baker 1804 | 1805 | 1806 | baker->Google 1807 | 1808 | 1809 | 1810 | 1811 | baker->Gmail 1812 | 1813 | 1814 | 1815 | 1816 | baker->Closure 1817 | 1818 | 1819 | 1820 | 1821 | jgwebber 1822 | 1823 | Joel Webber 1824 | 1825 | 1826 | jgwebber->Google 1827 | 1828 | 1829 | 1830 | 1831 | jgwebber->GWT 1832 | 1833 | 1834 | 1835 | 1836 | kellegous 1837 | 1838 | Kelly Norton 1839 | 1840 | 1841 | kellegous->Google 1842 | 1843 | 1844 | 1845 | 1846 | kellegous->GWT 1847 | 1848 | 1849 | 1850 | 1851 | zakas 1852 | 1853 | Nicholas C. Zakas 1854 | 1855 | 1856 | zakas->Yahoo 1857 | 1858 | 1859 | 1860 | 1861 | zakas->Yui 1862 | 1863 | 1864 | 1865 | 1866 | IBM->Dojo 1867 | 1868 | 1869 | 1870 | 1871 | GenInt 1872 | 1873 | General Interface 1874 | 1875 | 1876 | TIBCO 1877 | 1878 | TIBCO 1879 | 1880 | 1881 | GenInt->TIBCO 1882 | 1883 | 1884 | bought 1885 | 1886 | 1887 | RoR 1888 | 1889 | Ruby On Rails 1890 | 1891 | 1892 | RoR->Prototype 1893 | 1894 | 1895 | uses 1896 | 1897 | 1898 | NumSum 1899 | 1900 | NumSum 1901 | 1902 | 1903 | TrimSpreadsheet->NumSum 1904 | 1905 | 1906 | 1907 | 1908 | BEA 1909 | 1910 | BEA 1911 | 1912 | 1913 | Plumtree->BEA 1914 | 1915 | 1916 | BEA bought Plumtree 1917 | 1918 | 1919 | jscontrols 1920 | 1921 | WebFX jscontrols 1922 | 1923 | 1924 | Plumtree->jscontrols 1925 | 1926 | 1927 | 1928 | 1929 | jscontrols->WebFX 1930 | 1931 | 1932 | 1933 | 1934 | schampeon 1935 | 1936 | Steve Champeon 1937 | 1938 | 1939 | ActiveWidgets 1940 | 1941 | ActiveWidgets 1942 | 1943 | 1944 | 1945 | --------------------------------------------------------------------------------