This commit is contained in:
kuehnelbs
2018-04-30 09:38:26 +02:00
parent 1870810b57
commit 278eed4c8c
3 changed files with 6 additions and 54 deletions

55
.gitignore vendored
View File

@ -1,42 +1,5 @@
# Created by .ignore support plugin (hsz.mobi)
### Node template
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
# Runtime data
pids
*.pid
*.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov
# Coverage directory used by tools like istanbul
coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration
.lock-wscript
# Compiled binary addons (https://nodejs.org/api/addons.html)
build/Release
# Dependency directories # Dependency directories
node_modules/ node_modules/
jspm_packages/
# Typescript v1 declaration files # Typescript v1 declaration files
typings/ typings/
@ -44,24 +7,10 @@ typings/
# Optional npm cache directory # Optional npm cache directory
.npm .npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack' # Output of 'npm pack'
*.tgz *.tgz
# Yarn Integrity file # webstorm
.yarn-integrity
# dotenv environment variables file
.env
# next.js build output
.next
.idea/* .idea/*
node_modules/*
package-lock.json package-lock.json

View File

@ -4,6 +4,9 @@ Collection of node-red nodes to download Calendars (CalDAV) and Contacts
Detailed information can be found in the build in info of each node Detailed information can be found in the build in info of each node
## Installation
npm install node-red-contrib-nextcloud
### CalDAV ### CalDAV
- based on [dav](https://github.com/lambdabaa/dav) package using CalDAV protocol - based on [dav](https://github.com/lambdabaa/dav) package using CalDAV protocol
- reads all calendars and sends a message for each calendar - reads all calendars and sends a message for each calendar

View File

@ -1,6 +1,6 @@
{ {
"name": "node-red-contrib-nextcloud", "name": "node-red-contrib-nextcloud",
"version": "0.0.1", "version": "0.1.0",
"description": "Collection of node-red nodes to download Calendars (CalDAV) and Contacts (CardDAV) and up- / download / list files (WebDAV) from / to nextcloud", "description": "Collection of node-red nodes to download Calendars (CalDAV) and Contacts (CardDAV) and up- / download / list files (WebDAV) from / to nextcloud",
"main": "nextcloud.js", "main": "nextcloud.js",
"node-red": { "node-red": {