0.0.1 • Published 6 years ago

valeo v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

Valeō alpha

Pronounciation

Experimental bare-bones reactive programming using standard ES syntax.

Goals

The following code should be possible. The take from the code is not that this code is great, but that it becomes conceivable to achieve complete asynchronous serialization with standard ECMAScript syntax.

import {Events} from './valeo/index.mjs';

(async resized => {
  for await (const event of resized) {
    // ... do stuff
  }
})(Events.from(window, 'resize'));