Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jaredhanson/junction-delay
XMPP delayed delivery middleware for Junction and Node.js.
https://github.com/jaredhanson/junction-delay
Last synced: 28 days ago
JSON representation
XMPP delayed delivery middleware for Junction and Node.js.
- Host: GitHub
- URL: https://github.com/jaredhanson/junction-delay
- Owner: jaredhanson
- License: mit
- Created: 2012-05-14T03:32:59.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-26T05:33:14.000Z (over 12 years ago)
- Last Synced: 2024-10-02T06:31:53.826Z (about 1 month ago)
- Language: JavaScript
- Size: 186 KB
- Stars: 2
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# junction-delay
[Delayed Delivery](http://xmpp.org/extensions/xep-0203.html) middleware built on [Junction](http://github.com/jaredhanson/junction)
and [Node](http://nodejs.org).## Installation
$ npm install junction-delay
## Usage
To parse delayed delivery information in message and presence stanzas, use
`delayParser` middleware:var delayParser = require('junction-delay');
var app = junction()
.use(delayParser());## Tests
$ npm install --dev
$ make test[![Build Status](https://secure.travis-ci.org/jaredhanson/junction-delay.png)](http://travis-ci.org/jaredhanson/junction-delay)
## License
(The MIT License)
Copyright (c) 2011 Jared Hanson
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.