0.1.0 • Published 5 years ago

csv2ics v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

csv2ics - Convert CSV files into ICS calendars

npm.io Build Status Coverage Status

Introduction

Convert a CSV file into an ICS calendar.

Header map

csv2ics needs to know which columns are mapped to which ICAL properties. This can not be easily specified through CSV headers, so we rely on the header map.

The header map is a comma separated list of strings that specify the matching ICAL-properties for each column. Certain mapping are detected and handled properly (e.g. the parsing of the date fields). If a mapping is unknown, it is simply added as a custom attribute.

These mappings are detected:

  • SUMMARY
  • DTSTART
  • DTEND
  • DESCRIPTION
  • LOCATION

Usage

Install csv2ics using npm:

npm install -g csv2ics

Run it using

csv2ics <input file.csv> <output file.ics>

Input and output files are optional. If only one file is specified, it is used as an input file. If no file is specified, CSV data is taken from the STDIN.

For option help, use

csv2ics --help

Options

Supported options with defaults are:

Building

To test and build this package, simply use grunt:

grunt test