Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CalDAV in node.js?

Tags:

node.js

caldav

Does anyone know of the options for providing a Calendar (CalDAV) interface into a node.js application?

I've seen jsDAV, but it seems it does not currently support CalDAV.

It seems node+express supports *DAV HTTP methods like PROPFIND, etc, but I doubt it would be feasible to write a CalDAV impl directly as part of my app.

Any ideas or recommendations?

like image 593
7zark7 Avatar asked Feb 02 '13 00:02

7zark7


1 Answers

Found this: https://github.com/mozilla-b2g/caldav seems to be the JavaScript implementation in FirefoxOS so it should work. It seems to be maintained, comes with unit tests (using Mocha) but no documentation :/

There is a list of libraries on Wikipedia: http://en.wikipedia.org/wiki/Comparison_of_CalDAV_and_CardDAV_implementations

like image 198
tanguy_k Avatar answered Oct 27 '22 09:10

tanguy_k