listen-interface
v1.1.0
Published
module to listen on a specific network interface
Downloads
825
Readme
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 serverconfig
:port
: port to listen tointerface
: network interface to listen to
- [callback] : optionnal callback function