/
githubmirror
/
pm2
Обзор
Документация
Войти
/
githubmirror
/
pm2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
examples/misc-examples/udp.js
23 строки
462 B
Unitech
Update README.md and fully restructure tests
24 янв 2018, 14:43
24 янв 2018, 14:43
dcd190b
Код
Авторство
О чём код?
var punt = require('punt'); var server = punt.bind('0.0.0.0:5000'); var a = punt.connect('0.0.0.0:5000'); var b = punt.connect('0.0.0.0:5000'); var c = punt.connect('0.0.0.0:5000'); server.on('message', function(msg){ console.log(msg); }); setInterval(function(){ a.send({ hello: 'world' }); }, 150); setInterval(function(){ b.send('hello world'); }, 150); setInterval(function(){ c.send(new Buffer('hello')); }, 150); process.emit('listening');