ics-to-json icon indicating copy to clipboard operation
ics-to-json copied to clipboard

📅 Convert ICS calendars (eg. Google Calendar) to an opinionated JSON format.

Results 24 ics-to-json issues
Sort by recently updated
recently updated
newest added

The current usage example requires support for import and includes a fetch, both of which do not work in all environments where this js package might be used. A simpler...

``` const icsToJson = require('ics-to-json').default icsToJson() ``` gives ``` TypeError: Cannot read property 'split' of undefined at icsToJson (/home/runner/node_modules/ics-to-json/dist.js:32:23) ``` instead of something like "ics-to-json/icsToJson requires one string argument, no...

Added the RRULE and Duration key values. Handle when the source calendar has a colon in the text by re-joining the parts back together.

Hey! Found this and was using it to try to build something out for myself. I needed a URL field, so I've done my best to add it to the...