arroyo

GitHub event streams

Usage no npm install needed!

<script type="module">
  import arroyo from 'https://cdn.skypack.dev/arroyo';
</script>

README

arroyo

'use strict';

var arroyo = require('arroyo');


var stream = arroyo();
stream.on('data', function (data) {
    console.log(data.id, data.type, new Date(data.created_at));
});