Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ical-js-parser-extn

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ical-js-parser-extn

Simple parser from iCal string

  • 0.0.3
  • unpublished
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

ical-js-parser [BETA]

Simple parser from iCal string

For complicated use cases use https://github.com/mozilla-comm/ical.js/

Install

npm i ical-js-parser

How to use

import ICalParser from 'ical-js-parser';

// Parse from iCal string to JSON
const resultJSON = ICalParser.toJSON(iCalString);

// Parse from JSON to iCal string
const resultString = ICalParser.toString(someJSONevent);

Example result from iCal string

Note: Same format can be used to parse JSON event to iCal string

{
    calendar: 
        { 
            begin: 'VCALENDAR', 
            prodid: 'abc', 
            version: '1', 
            end: 'VCALENDAR',
            method: 'REPLY'
        },
    todos: [
        {
            begin: 'VTODO',
            summary: 'text',
            end: 'VTODO'
        }
    ],
    events: 
        [
            {
                begin: 'VEVENT',
                lastModified: {
                    value: '2021-03-30T19:32:00Z'
                }
                dtstamp: {
                    value: "20210330T193200Z"
                },
                uid: 'CaqugAe----1165932647582@test.com',
                summary: 'Meeting',
                dtstart: {
                    value: "20210401T100000Z"
                },
                dtend: {
                    value: "20210401T103000Z"
                },
                organizer: {
                    EMAIL: "buia@test.com",
                    mailto: "buia@test.com"
                },
                attendee: [
                    {
                        PARTSTAT: "ACCEPTED",
                        CUTYPE: "INDIVIDUAL",
                        ROLE: "REQ-PARTICIPANT",
                        EMAIL: "bata123@test2.org",
                        mailto: "bata123@test2.org"
                    }
                ],
                sequence: '1',
                end: 'VEVENT',
                alarms: [
                            {
                            trigger: '-PT20M',
                            action: 'DISPLAY',
                            }
                ]
            }
        ]
}

TODO

  • calendar timezones

Keywords

FAQs

Package last updated on 04 Jan 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc