A library for adding events to calendar apps. It supports .ics files for iCalendar and Office Outlook, and also supports Google Calendar, Yahoo! Calendar and Outlook Online.
See the full documentation here
yarn add datebook
import { ICalendar } from 'datebook'
const icalendar = new ICalendar({
title: 'Happy Hour',
location: 'The Bar, New York, NY',
description: 'Let\'s blow off some steam from our weekly deployments to enjoy a tall cold one!',
start: '20190704T190000',
end: '20190704T210000',
recurrence: {
frequency: 'WEEKLY',
interval: 2
}
})
icalendar.download()
YahooCalendar
GoogleCalendar
ICalendar
OutlookCalendar
CalendarBase
(for creating new services)
Please report all bugs here.
Available here.