No longer maintained. Beseda is fast, well designed and featured Node.js Pub/Sub server. Beseda offers multiple platform API to develop realtime web applications.
- Bayeux messaging protocol
- Customizable Pub/Sub engine:
- Memory
- Redis
- You own
- Clients:
- Browser
- Node.js
- Console
- PHP (only redis publisher yet)
- Ruby (coming soon)
- Python (coming soon)
- Security:
- SSL
- Connection
- Publishing
- Subscribing
- Horizontal scaling (depends on Pub/Sub engine)
- Monitor (coming soon)
- Benchmarks suite
-
Install Node.js
Read Building and Installing Node.js in wiki.
-
Get Beseda
You can install Beseda from npm or get from git repository.
2.1. Install from npm
npm install -g beseda
2.2. Get last unstable version from git
git clone http://github.com/geometria-lab/Beseda.git
npm install -g Beseda
-
Use Beseda
NOTE: You can find test application in
example
folder.3.1. Run Beseda server
beseda-server -h 127.0.0.1 -p 4000
3.3. Create you
test.html
<script src="http://localhost:4000/beseda.min.js" type="text/javascript"></script> <script type="text/javascript"> function say(what) { var p = document.createElement('p'); p.innerHTML = what; document.body.appendChild(p); } var beseda = new Beseda({ host : 'localhost', port : 4000 }); beseda.subscribe('/myFavoriteChannel', function(error) { say('You are subscribed to "/myFavoriteChannel".'); }); beseda.on('message', function(channel, message) { say(channel + ': "' + message + '"'); }); </script> <body> <input type="button" value="Send me a nice message dude..." onclick="beseda.publish('/myFavoriteChannel', 'Nice!');return false"/> </body>
3.4 Test it
Open
test.html
in you favorite browser
Coming soon.
(The BSD license)
Copyright (c) 2011, Geometria Lab [email protected]
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
- Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
- Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
- Neither the name of the "organization" nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL "COPYRIGHT HOLDER" BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.