mario-mario

0.0.7-lite • Public • Published

mario-mario Build Status

Quick and easy class for defining your plumbing with express.io and socket.io for RESTful and Web Sockets programming.

Usage

var mario = require('mario');
mario.plumbing({
	port: 10000,
	http: {
		get: {
			'/' : function (q,r) {
				return r.send('<!doctype html><html><script src=\'socket.io/socket.io.js\'></script></html>');
			},
			'/echo' : function (q,r) {
				return r.send({
					echo : 'GET /echo'
				});
			}
		},
		post: {
			'/echo' : function (q,r) {
				return r.send({
					echo : 'POST /echo'
				});
			}
		}
	},
	socket: {
		'unicast:echo' : function (q) {
			return q.io.emit('unicast:echo','unicast:echo');
		},
		'broadcast:echo' : function (q) {
			return q.io.broadcast('broadcast:echo','broadcast:echo');
		}
	}
});

Readme

Keywords

none

Package Sidebar

Install

npm i mario-mario

Weekly Downloads

1

Version

0.0.7-lite

License

BSD-2-Clause

Last publish

Collaborators

  • braungoodson