0.0.12 • Published 6 years ago

angular-icalendar v0.0.12

Weekly downloads
45
License
-
Repository
github
Last release
6 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

6 years ago

0.0.10

6 years ago

0.0.11

6 years ago

0.0.9

6 years ago

0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.4

6 years ago

0.0.1

6 years ago