npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

samsaara

v0.0.2

Published

A comprehensive module to create, maintain and manage active socket connections.

Downloads

17

Readme

samsaara

Build Status

Note: This module is NOT ready to be used. If you happen to have stumbled across it, know that it's a Work in Process.

samsaara title image

A functional, object-oriented bridge to manage, manipulate and interact with large sets of real-time connections.

But it does oh so much more! More specifically:

  • Extends websockets, or websockets based interfaces (sockjs, engine.io etc.) to infinite extensibility.
  • Execute client methods from server and server methods on client using classic functional patterns (including the passing of callbacks).
  • Middleware engine for object-oriented extensibility.
  • A very simple, easy to use, scalable interface.

Installation

npm install --save samsaara

Basic Usage

Client Side

Using browserify or any other commonjs packager, just require samsaara in your client script and initialize with your socket.

Use the core object to perform actions on the samsaara core server.

var WebSocket = require('ws')
var ws = new WebSocket('ws://localhost')

var samsaara = require('samsaara').initialize({
    socket: ws
})

// Execute a method on core
samsaara.core.execute('testMethod')('testing samsaara', [111, 222, 333])

Core (Server) Side

var WebSocketServer = require('ws').Server
var wss = new WebSocketServer({
    port: 8080
})

var samsaara = require('samsaara').initialize({
    socketType: 'ws'
})

wss.on('connection', function connection(ws) {
    var connection = samsaara.newConnection(ws)
})

samsaara.expose({
    testMethod: function(a_string, number_array) {
        console.log('Test Method Executed', a_string, number_array);
    }
})

Primitive Components

There are 3 main components to interact with when using samsaara: connections; namespaces; and exposed methods. Middleware modules handle the rest (grouping, resources, ipc, authentication etc.) but they're all based on these fundamental components.

Connections

A connection is just a representation of a connected client and is the most fundamental and important object in the system. Samsaara uses a realtime channel (either websockets, sockjs, engine.io etc.) to communicate with the connection and pass messages between client and server processes.

Refer to the API to see details on interfacing with the connection and its events.

Exposures

In the same way routes are exposed interfaces to http clients, samsaara can expose methods to connections. This simple action allow you to seamlessly work between client and server, pass arguments between them, and program as if each were native, local* objects.

Refer to the API to see details on using exposed methods (exposures) to interact with connections.

*(uhmmm we're trying anyway)

Namespaces

A nameSpace is a discrete space for exposed methods. Namespaces basically allow you to separate groups of exposed methods. But even more importantly they allow for almost infinite extensibility, giving modules the ability to have custom configurations without worrying about overlapping names.

Refer to the API to see details on using nameSpaces.

Server API

Items denoted with * are optional

Server: Key Events

While slightly verbose, events in samsaara are meant to share a common syntax and are related to objects instead of messages.

samsaara.on('connection', function(connection){})

Called when a new connection connects to the system. Passes through a connection reference to the handler.

samsaara.on('disconnect', function(connection){})

Called when a connection disconnects from the system. Passes through a connection reference to the handler.

samsaara.on('initialized', function(connection){})

Called when a connection has completed initialization after connecting. This is called after it has completed ng with the Passes through a connection reference to the handler.

Server: Interacting with Connections

While you are welcome to find ways of organizing and accessing connections, natively samsaara keeps things simple.

samsaara.connections

A list of all connections.

samsaara.connection(connection_id)

Returns the connection with the supplied connection ID.

connection.execute(method_name, args,..., callback)

Executes on the client the exposed method of the given string method_name. Pass in any number of arguments that the receiving function might expect, and end the call with a callback(!) if you'd like. Currently, only the last argument can be a function.

connection.nameSpace(namespace_name).execute(method_name, args,..., callback)

Executes a method within a namespace on the connection.

Server: Exposing Methods

Exposing methods to clients is what makes samsaara so powerful and fun. Methods that are exposed can take any non-circular javascript primitive, and even allows for callbacks. Just use the standard syntax for dealing with callbacks as the last argument to your functions.

samsaara.expose(method_set);

Exposes a set of methods to clients. These are placed in the main namespace.

Server: Using Namespaces

Namespaces are powerful because the enable so many things that might not be fully apparent at first. With namespaces you can create other primitive objects that route messages to specific namespaces. OR, they're also just a good way to keep your exposed methods organized.

samsaara.createNamespace(name, exposedSet)

samsaara.nameSpace(name)

samsaara.nameSpace(name).expose()

Connection API

The client API is quite similar to the server's API. There's just less to it :)

Client: Interacting with the Core Process

Currently clients are only connected to a single server process at a time. Perhaps someone would like to write an extension that connects to multiple? :)

samsaara.execute(method_name, args,..., callback)

samsaara.nameSpace(name).execute(method_name, args,..., callback);

Client: Exposing Methods

Exposing methods to the server works much the same way it works on the server.

samsaara.expose(method_set);

Client: Using Namespaces

Namespaces are powerful because they enable so many things that might not be fully apparent at first. With namespaces you can create other primitive objects that route messages to specific namespaces. OR, they're also just a good way to keep your exposed methods organized.

samsaara.createNamespace(name, exposedSet)

samsaara.nameSpace(name)

samsaara.nameSpace(name).expose()

License

The MIT License (MIT)

Copyright (c) 2014 Arjun Mehta

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.