(A JavaScript library for building user interfaces)
Domen Kožar / @iElectric
Ljubljana Autumn JavaScript Meetup
Wikipedia: In computing, reactive programming is a programming paradigm oriented around data flows and the propagation of change.
(immutability)
Hint: Custom DOM elements / Web components
var Hello = React.createClass({ render: function() { return <div>Hello {this.props.name}</div>; } }); React.render(<Hello name="World" />, document.body);
IRC client in react.js: https://github.com/kiberpipa/weenerd
By Domen Kožar