0.0.12 • Published 4 years ago

angular-icalendar v0.0.12

Weekly downloads
45
License
-
Repository
github
Last release
4 years ago

Build Status npm version

angular-icalendar

Parser for iCalendar written for Angular. This package is under development and should not be used in production.

Dependencies

  • Angular (Tested with Angular v7)
  • moment (Tested with Moment v2.24.0)

Installation

Run npm install angular-icalendar to install.

Usage

In your xxx.module.ts file :

import { AngularIcalendarModule } from 'angular-icalendar';
...
@NgModule({
  imports: [
    ...,
    AngularIcalendarModule,
    ...
  ],

In your xxx.component.ts file :

import { IcsParserService } from 'angular-icalendar';
...
export class CalendarsComponent implements OnInit {

  constructor(
    private icsParser: IcsParserService
  ) {}

  sampleFunction(): void {
    let parsedCal = this.icsParser.parseICS(ics_string);
  }

Contributing

Feel free to create pull request.

0.0.12

4 years ago

0.0.10

4 years ago

0.0.11

4 years ago

0.0.9

4 years ago

0.0.8

4 years ago

0.0.7

4 years ago

0.0.6

4 years ago

0.0.5

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.4

4 years ago

0.0.1

4 years ago