simudp

0.0.16 • Public • Published

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.

Readme

Keywords

none

Package Sidebar

Install

npm i simudp

Weekly Downloads

35

Version

0.0.16

License

none

Last publish

Collaborators

  • alexstrat