Receive push notifications from Nextcloud
Перейти к файлу
Christoph Wurst 99d2af5be6
Merge pull request #3 from nextcloud/dependabot/npm_and_yarn/highlight.js-10.4.0
Bump highlight.js from 10.0.3 to 10.4.0
2020-11-25 08:46:45 +01:00
lib Fix working 2020-07-10 14:28:05 +02:00
test Initial implementation 2020-05-18 15:18:08 +02:00
.gitignore Initial implementation 2020-05-18 15:18:08 +02:00
.npmignore Initial implementation 2020-05-18 15:18:08 +02:00
.travis.yml Initial implementation 2020-05-18 15:18:08 +02:00
CHANGELOG.md Update changelog for v0.0.1 2020-07-08 10:08:25 +02:00
LICENSE Initial implementation 2020-05-18 15:18:08 +02:00
README.md Fix working 2020-07-10 14:28:05 +02:00
babel.config.js Adapt to server API 2020-07-08 09:20:52 +02:00
package-lock.json Bump highlight.js from 10.0.3 to 10.4.0 2020-11-24 23:27:30 +00:00
package.json Adapt to server API 2020-07-08 09:20:52 +02:00
tsconfig.json Initial implementation 2020-05-18 15:18:08 +02:00

README.md

@nextcloud/push

Build Status npm Documentation

Receive push notifications from Nextcloud.

Installation

npm i -S @nextcloud/push

Usage

import { connect } from '@nextcloud/push'

const connection = connect(
    'mail',
    'folder/INBOX',
    e => console.info(e)
)

connection.close()