# teeleader-ical

> A tolerant, minimal icalendar parser

Latest version **0.1.0** (published 2014-05-21) · 0 weekly downloads

## Install

```sh
npm install teeleader-ical
pnpm add teeleader-ical
yarn add teeleader-ical
bun add teeleader-ical
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2014-05-21 |
| First published | 2014-05-21 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 (+1 in 1 direct dependencies) |
| Install scripts | no |
| Author | Peter Braden |
| Maintainers | sberryman |
| Keywords | ical, ics, calendar |

## Links

- npm: https://www.npmjs.com/package/teeleader-ical
- Repository: https://github.com/peterbraden/node-ical
- Issues: https://github.com/peterbraden/node-ical/issues
- npm.io page: https://npm.io/package/teeleader-ical

## Dependencies (1)

- [request](https://npm.io/package/request.md)

## Recent versions

- 0.1.0 (latest) — 2014-05-21

## README

# ical.js #
(Formerly node-ical)

[![Build Status](https://secure.travis-ci.org/peterbraden/node-ical.png)](http://travis-ci.org/peterbraden/node-ical)

A tolerant, minimal icalendar parser for javascript/node
(http://tools.ietf.org/html/rfc5545)


## Install - Node.js ##

ical.js is availble on npm:

    npm install ical



## API ##

    ical.parseICS(str)

Parses a string with an ICS File








## Example 1 - Print list of upcoming node conferences (see example.js)

    var ical = require('ical')

    ical.fromURL('http://lanyrd.com/topics/nodejs/nodejs.ics', {}, function(err, data) {
      for (var k in data){
        if (data.hasOwnProperty(k)) {
          var ev = data[k]
          console.log("Conference",
            ev.summary,
            'is in',
            ev.location,
            'on the', ev.start.getDate(), 'of', months[ev.start.getMonth()]);
        }
      }
    });

---
_Source: https://npm.io/package/teeleader-ical · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
