RosettaCodeData/Task/Distributed-programming/JavaScript/distributed-programming-1.js

9 lines
164 B
JavaScript
Raw Normal View History

2013-04-10 16:57:12 -07:00
var net = require('net')
var server = net.createServer(function (c){
c.write('hello\r\n')
c.pipe(c) // echo messages back
})
server.listen(3000, 'localhost')