- http://github.com/DanialK/ReactJS-Realtime-Chat
- http://github.com/DanialK/danialk.github.com
- http://github.com/ENCODE-DCC/encoded
- http://github.com/Khan/khan-api
- http://github.com/Khan/perseus
- http://github.com/LukasRychtecky/este-library
- http://github.com/Pirob/react
- http://github.com/alexyoung/dailyjs
- http://github.com/andreypopp/react-dom-events
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| x = '/x/' | |
| /x/==x |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| vjeux@vjeux:~$ jsx test.js | |
| built Module("test") | |
| /** @jsx React.DOM */ | |
| React.renderComponent( | |
| React.DOM.h1(null, "Hello, world!"), | |
| document.getElementById('example') | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // JSX | |
| <ul> | |
| <li class="active"><strong>A</strong> b</li> | |
| </ul> | |
| # Coffee | |
| {ul, li, strong} = React.DOM | |
| (ul {}, [ | |
| (li {class: 'active'}, [(strong {}, ['A']), ' b']) | |
| ]) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var material = new THREE.ParticleCanvasMaterial( { | |
| color: 0xffffff, | |
| program: function ( context ) { | |
| context.beginPath(); | |
| context.arc( 0, 0, 1, 0, PI2, true ); | |
| context.fill(); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://github.com/Agent-H/tunesquared | |
| http://github.com/DanialK/ReactJS-Realtime-Chat | |
| http://github.com/DanialK/danialk.github.com | |
| http://github.com/ENCODE-DCC/encoded | |
| http://github.com/Khan/khan-api | |
| http://github.com/Khan/perseus | |
| http://github.com/LukasRychtecky/este-library | |
| http://github.com/Pirob/react | |
| http://github.com/alexyoung/dailyjs | |
| http://github.com/andreypopp/react-dom-events |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! URI.js v1.11.2 http://medialize.github.com/URI.js/ */ | |
| /* build contains: IPv6.js, punycode.js, SecondLevelDomains.js, URI.js */ | |
| (function(f,l){"object"===typeof exports?module.exports=l():"function"===typeof define&&define.amd?define(l):f.IPv6=l(f)})(this,function(f){var l=f&&f.IPv6;return{best:function(g){g=g.toLowerCase().split(":");var k=g.length,d=8;""===g[0]&&""===g[1]&&""===g[2]?(g.shift(),g.shift()):""===g[0]&&""===g[1]?g.shift():""===g[k-1]&&""===g[k-2]&&g.pop();k=g.length;-1!==g[k-1].indexOf(".")&&(d=7);var m;for(m=0;m<k&&""!==g[m];m++);if(m<d)for(g.splice(m,1,"0000");g.length<d;)g.splice(m,0,"0000");for(m=0;m<d;m++){for(var k= | |
| g[m].split(""),f=0;3>f;f++)if("0"===k[0]&&1<k.length)k.splice(0,1);else break;g[m]=k.join("")}var k=-1,l=f=0,u=-1,A=!1;for(m=0;m<d;m++)A?"0"===g[m]?l+=1:(A=!1,l>f&&(k=u,f=l)):"0"==g[m]&&(A=!0,u=m,l=1);l>f&&(k=u,f=l);1<f&&g.splice(k,f,"");k=g.length;d="";""===g[0]&&(beststr=":");for(m=0;m<k;m++){d+=g[m];if(m===k-1)break;d+=":"}""===g[k-1]&&(d+=":");return d},noConflict:func |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** @jsx React.DOM */ | |
| var Hello = React.createClass({ | |
| mixins: [LinkedStateMixin], | |
| getInitialState: function() { | |
| return {name: 'phunt'}; | |
| }, | |
| render: function() { | |
| return ( | |
| <div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Parse.initialize( | |
| "4wSiyq4hMhOd3BrGxxrNs9cliTLQWr6YnrJeJfuL", | |
| "ku1kcuy0opmH4R8zWTlWwMYEtibAqdv3AOrdm0Eu" | |
| ); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Chrome 30 - Macbook Pro | |
| BackboneJS : 1757 ms | |
| React : 2554 ms | |
| AngularJS-perf : 3400 ms | |
| AngularJS : 3922 ms | |
| VanillaJS : 5578 ms | |
| EmberJS : 6865 ms | |
| jQuery : 14426 ms |