A tool to convert ICS calendars to JSON
npm install ics-to-json

---
Convert the ICS calendar format to JSON data to consume in web apps.
``js
import { icsToJson } from 'ics-to-json';
// Get ICS text however you like, example below
// Make sure you have the right CORS settings if needed
const convert = async (fileLocation) => {
const icsRes = await fetch(fileLocation);
const icsData = await icsRes.text();
// Convert
const data = icsToJson(icsData);
return data;
};
`
Result is an array of:
`js``
{
startDate: '20180505T020000Z',
endDate: '20180505T060000Z',
description: 'Big Event!',
location: 'The place!',
summary: 'Summary!'
}