Functional reactive programming library for JavaScript.

learn more… | top users | synonyms

3
votes
1answer
53 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
199 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: ...