New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

beseda

Package Overview
Dependencies
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

beseda

Beseda is fast, well designed and featured Pub/Sub server. Beseda offers multiple platform API to develop realtime web applications.

  • 0.2.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19
increased by216.67%
Maintainers
1
Weekly downloads
 
Created
Source

Beseda

Beseda is fast, well designed and featured Node.js Pub/Sub server. Beseda offers multiple platform API to develop realtime web applications.

Features

  • Bayeux messaging protocol
  • Customizable Pub/Sub engine:
  • 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

Get started!

  1. Install Node.js

    Read Building and Installing Node.js in wiki.

  2. 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

  3. 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

Documentation

Coming soon.

Contributors

Inspired

License

(The BSD license)

Copyright (c) 2011, Geometria Lab ufo@geometria-lab.net

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.

Keywords

FAQs

Package last updated on 10 May 2012

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc