1.0.1 • Published 8 years ago

listen-interface v1.0.1

Weekly downloads
5
License
Apache-2.0
Repository
github
Last release
8 years ago

listen-interface

module to listen on a specific network interface

Installation

npm install --save listen-interface

exemple :

var http = require('http'),
    listen = require('listen-interface');
    
var server = http.createServer(function(req, res) {
 // ...
});

listen(server, { 'port': 8080, 'interface': 'wlan0'})

API :

listen :

  • server : http server or net server
  • config :
    • port : port to listen to
    • interface : network interface to listen to
  • callback : optionnal callback function