1.0.0 • Published 8 years ago

ical-stalker v1.0.0

Weekly downloads
-
License
ISC
Repository
bitbucket
Last release
8 years ago

README

This is a very simple module that reads an ical file specified by an url and returns all events for a specific date. The returned file contains information such as summary and location.

#!Node.js

var stalker = require('ical-stalker');
stalker.stalk('http://some-url.ical', Date.now(), function (err, events) {
    for (var event : events) {
        console.log(event.summary);
    }
});
1.0.0

8 years ago