ical-stalker

1.0.0 • Public • Published

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);
    }
});

Readme

Keywords

none

Package Sidebar

Install

npm i ical-stalker

Weekly Downloads

1

Version

1.0.0

License

ISC

Last publish

Collaborators

  • joshmallow