cozy / jsDAV

jsDAV allows you to easily add WebDAV support to a NodeJS application. jsDAV is meant to cover the entire standard, and attempts to allow integration using an easy to understand API.
http://www.mikedeboer.nl
MIT License
10 stars 5 forks source link

Does this have CalDAV support? #13

Closed luofan189 closed 8 years ago

luofan189 commented 8 years ago

Does this have CalDAV support? It seems no implementation in the lib/CalDAV folder...

clochix commented 8 years ago

Hi @luofan189, Yes, we use this library to sync calendars with CalDAV. What do you mean by “It seems no implementation in the lib/CalDAV folder”? In this folder: https://github.com/cozy/jsDAV/tree/npm-publish-fork/lib/CalDAV ?

luofan189 commented 8 years ago

@clochix , I meant it seems no implementation for iBackend as I only see interfaces folder, but this one has a redis backend implementation: https://github.com/mikedeboer/jsDAV/tree/master/lib/CalDAV/backends I checked cozy-sync, I think the implementation of the backend is in that repo, am I right?

clochix commented 8 years ago

Yes you're right, as we use CozyDB as backend. Here's our backend: https://github.com/cozy/cozy-sync/blob/master/server/backends/caldav.coffee

luofan189 commented 8 years ago

Thanks!