0.0.7 • Published 6 years ago

nativescript-xmpp v0.0.7

Weekly downloads
-
License
Apache-2.0
Repository
-
Last release
6 years ago

npm npm Build Status

Nativescript XMPP

Installation

tns plugin add nativescript-xmpp

Usage

import { isIOS } from 'tns-core-modules/platform';
import { XMPP, Presence } from 'nativescript-xmpp';
const xmpp = new XMPP({
  username: 'user',
  password: 'password',
  domain: 'localhost',
  host: isIOS ? 'localhost' : '10.0.2.2'
});
xmpp.on('connected', args => {
  xmpp.login();
});
xmpp.on('authenticated', (args: any) => {
  const presence = new Presence();
  presence.status = 'Nice';
  xmpp.send(presence);
});
xmpp.connect();

License

Apache License Version 2.0, January 2004

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago