Coder Social home page Coder Social logo

udp2stream's Introduction

Streaming UDP server

Sets up a simple udp receiver which pushes received udp messages onto a readstream as objects containing the received message, info about the remote client, and a reply function.

var udp_server = require('udp2stream')
var through2 = require('through2')

var reply_to_request = through2.obj(function (udp, _, next) {
  console.log('Received message ' + udp.request.message.toString() + ' from ' + udp.request.client.address + ':' + udp.request.client.port)
  udp.reply('This is my reply to the client')
  this.push(udp)
  next()
})

var server = udp_server.listen({port: 1234})

server
.pipe(reply_to_request)
.on('data', function (data) {
  console.log(data)
})
.on('error', function (error) {
  console.log(error)
})

setTimeout(function () {
  // close the server
  server.close()
}, 10000)

API

udp_server.listen(options)

  • options.port: udp_port to bind to
  • options.address: udp_address to bind to

udp_server.close()

Stop listening, close server.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.