djeglin / datebook

πŸ“… Generates URLs and downloads ICS files for adding events to popular calendar apps.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.


Code coverage Build status Dependency Status npm version License | MIT


Documentation

See the full documentation here

Quick start

Installation

yarn add datebook

Example usage

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()

Available classes

Bugs

Please report all bugs here.

Changelog

Available here.

About

πŸ“… Generates URLs and downloads ICS files for adding events to popular calendar apps.

License:MIT License


Languages

Language:JavaScript 100.0%