ConnectAi Logo ConnectAi Applications Integrated
206.330.6007

RealTime

HTML5 Push Notifications

Realtime on your website means the ability to communicate with every user on your website simultaneously and in real time. Web interaction taken to the next level through simple javascript coding.

Let me know when it's available.


Notify Me

Thanks! You will be the first to know.





How Easy is RealTime?

1) Create A Channel

RT.createChannel("chat",{
	onReceive : function(res) {
		var msg = res.data;
	}
});
	

2) Subscribe to a channel

RT.connect({ subscription : ["chat"] });
	

3) Send a message

RT.publish("chat","Hello everyone");
	







How Do I Install RealTime?

Include the JS files

<script src="realtime.js"></script>
	

Upload RealTime to your server, run it.

$: ssh user@webserver
$: <password>
$: CD <realtime_dir>
$: ./start