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

9 lines
164 B
JavaScript
Raw Normal View History

2023-07-01 11:58:00 -04: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')