icsparser.js
v0.0.1
Published
A JavaScript ICS file parser for the browser or node.
Readme
icsparser.js
JavaScript ICS calendar parser.
Usage
Load it in your package.json:
"dependencies": {
"icsparser.js": "~> 0.0.1"
}Or in your bower.json:
"dependencies": {
"icsparser.js": "~0.0.1"
}Then use it in your code:
var icsp = require('dist/icsparser');
var icalObject = new icsp.ICalendar();
var parser = new icsp.IcsParser();
var dateObject = parser.parseDateString('20110914T184000Z');Copyright
ICSparser.js © 2015 by Jan Lindblom.
ICSparser.js is licensed under the MIT license. Please see the
LICENSE.txt file for more information.
Contributing
- Fork it ( https://bitbucket.org/janlindblom/icsparser.js/fork )
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create a new Pull Request

