Socket
Socket
Sign inDemoInstall

socket-mobile-controller

Package Overview
Dependencies
98
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    socket-mobile-controller

wrapper for socket.io mobile controller


Version published
Weekly downloads
19
increased by111.11%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Socket mobile controller

npm version

Usage

$ npm install socket-mobile-controller --save-dev

Server

var express = require('express');
var app     = express();
var http    = require('http').Server(app);
var io      = require('socket.io')(http);

var socketManager = require('./lib/SocketManager')(io, {
    uidMaxNum     : 4, 
    mobileRefPath : 'mobile'
});

/*
- uidMaxNum // max number of sessions, ie. 9999
- mobileRefPath // pathname to distinguish between desktop and mobile
*/

Client

<script src="/socket.io/socket.io.js"></script>
var socket = io.connect('http://localhost:8888');

socket.on('connect', onConnect);
socket.on('message', onMessage);
socket.on('disconnect', onDisconnect);

function onMessage(e)
{
	switch(e.message)
	{
		case "connected":
			this.socket.UID = e.uid;
			break;

      	case "device-connected":
			console.log(e);
			break;

       case 'control-change':
			console.log('control-change:', e);
			break;
	}
}
Full example on dist folder

Docker + supervisord

Setup your Docker environment

Make sure you change the following variables inside the Makefile

  • IMAGE_NAME
  • CONTAINER_NAME

Supervisord

Change the paths to your folders and server script on devops/supervisord.conf

Dockerfile

Check the Dockerfile for any changes in folder names or files that you want to include / remove

Ready?

Once you're ready, you can just run

make docker

Check your Docker configuration and open the URL it's running.

AWS Elastic Beanstalk

This setup should just run out of the box on a AWS EBS setup with Docker.

Have fun!

@Thanks to grudelsud for his big patience with me =)

Keywords

FAQs

Last updated on 02 Oct 2015

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