listen-interface

1.0.1 • Public • Published

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

Package Sidebar

Install

npm i listen-interface

Weekly Downloads

163

Version

1.0.1

License

Apache-2.0

Last publish

Collaborators

  • jcreigno