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.
Thanks! You will be the first to know.
-
Chat
Private and public chats. Even live support chat.
-
Live Editing
Multiple users editing the same document at the same time.
-
Instant Stats
Live up-to-date stats for current traffic and site usage.
-
Notifications
Recieve live push notifications for any event.
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