npm.io
0.0.16 • Published 13 years ago

simudp

Licence
Version
0.0.16
Deps
3
Vulns
0
Weekly
0
Stars
10

Simudp : udp for the browser.

Imitates exactly the dgram API in the browser and backed by socket.io/UDP proxy.

Installation

$ npm install simudp

Runs the proxy server :

var server = require('http').createServer();

require('simudp').listen(server);

server.listen(8080);
In the browser
<!-- you need to serve SimUDP.js by your own -->
<script src="/SimUDP.js"></script>
<script>
  
var socket = SimUDP.createSocket('udp4');

var hello = new SimUDP.Buffer('hello');

socket.send(hello, 0, hello.length, 3000, 'anywhere.com');

socket.on('message', function(buf, rinfo) {
  //...
});

//you've understood, it's dgram for the browser...
</script>
Doc

Read the source or ask around.

Browserify support

Simudp is fully compatible with browserfy. Best way is to use directly dgram-browserify.