In all the examples of creating a client for node.js built-in net module I don't see how they get net to run on the client with out downloading it??
surely if my client-side code starts like this:
var net = require('net');
var client = net.connect({port: 8124},function(){
console.log('client connected');
client.write('world!\r\n');
});
then first i must write:
<script src="some strange node path to net ??"></script>
am i correct? how do I do this? btw: node.js is installed in my root on my server not local
netmodule is stored?