Functional reactive programming library for JavaScript.
2
votes
0answers
143 views
React mixin to declaratively get Bacon.js event steams
I wrote a mixin to declaratively get a Bacon.js event stream. So instead of onChange={this.handleChange}, you can do ...
4
votes
1answer
233 views
Resize renderer on browser window size change
For a game, there is some WebGLRenderer object that wraps around canvas element. There is need to update it's size when browser window size changes. Here goes my current code written using BaconJS. ...
2
votes
1answer
350 views
How do I handle the file system?
I'm trying to get my head around asyncronous programming in node.js.
My example is reading all the files from a directory.
I know I can avoid asyncronous programming by using the syncronous methods:
...