Releases: manoj-nama/ical-parser
Releases · manoj-nama/ical-parser
No events bug
Fixed issue where the parser would fail if there are no events in the passed data
Initial release
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
}
});