Skip to content

bimedia-fr/listen-interface

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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