0.0.12 • Published 5 years ago

angular-icalendar v0.0.12

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

5 years ago

0.0.10

5 years ago

0.0.11

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.5

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.4

5 years ago

0.0.1

5 years ago