Socket
Socket
Sign inDemoInstall

node-xmpp-core

Package Overview
Dependencies
9
Maintainers
4
Versions
55
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    node-xmpp-core

core files for the node-xmpp project


Version published
Weekly downloads
8.4K
decreased by-2.26%
Maintainers
4
Install size
399 kB
Created
Weekly downloads
 

Readme

Source

node-xmpp-core

Library to handle all the core functionality for:

  • node-xmpp-client
  • node-xmpp-component
  • node-xmpp-server

build status Coverage Status js-standard-style

Installation

Note: We now only support Node.js versions 0.8.0 and greater.

With package manager npm:

npm install node-xmpp-core

Testing

Install the dev dependencies, then...

npm test

Also see the tests run in travis. The tests in travis run both the code and code style tests.

How to use

Please use one of node-xmpp-client/component/server

Objectives of node-xmpp-core:

  • Use node.js conventions, especially EventEmitter, ie. for write buffer control
  • Fast parsing, node-expat was written for this library

Configurations

serialized

Set this option as true to enable the optimization for continuous TCP streams. If your "socket" actually transports frames (WebSockets) and you can't have stanzas split across those, do not enable it.

type: boolean default: false

Features

  • Simple JID parsing with Stringprep normalization
    • Optional now, you won't need ICU for just node-xmpp
    • Please be aware if you identify users by JIDs
    • npm install node-stringprep
  • Uses ltx
    • Much easier to handle than a standard DOM
    • xmlns-aware
    • Easy XML builder like Strophe.js (see down)
    • Non-buffering serialization
    • Was split out of node-xmpp for modularization and resuability

Dependencies

Optional

Automatically building the optional library can be turned off by npm config set optional false or by setting the environmental variable export NPM_CONFIG_OPTIONAL=false. On Heroku this is done through heroku config:set NPM_CONFIG_OPTIONAL=false, for example.

Building XML Elements

Strophe.js' XML Builder is very convenient for producing XMPP stanzas. ltx includes it in a much more primitive way: the c(), cnode() and t() methods can be called on any Element object, returning the new child element.

This can be confusing: in the end, you will hold the last-added child until you use up(), a getter for the parent. Connection.send() first invokes tree() to retrieve the uppermost parent, the XMPP stanza, before sending it out the wire.

Documentation

(Builing up documentation slowly)

JID Manipulation

...coming soon...

Keywords

FAQs

Last updated on 03 Mar 2017

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc