Skip to content

Releases: manoj-nama/ical-parser

No events bug

04 Apr 11:44

Choose a tag to compare

Fixed issue where the parser would fail if there are no events in the passed data

Initial release

03 Apr 07:08

Choose a tag to compare

ical-parser

A Simple non-blocking ical to JSON parser

Getting started

Download and install from npm

npm install ical-parser --save

Usage

var parser = require("ical-parser");

parser.convert(icalFileData, function(err, parsedResponse) {
    if(err) {
        console.log("Error occurred parsing ical data", err);
    }   else {
        //parsedResponse is the parsed javascript JSON object
    }
});