Skip to content

iperevozchikov/upnpserver

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

upnpserver

UpnpServer is a fast and light upnp server written in NodeJS. This version does not need an external database (mysql, mongodb), it stores all informations in memory.

Compatibility

  • Freebox HD
  • Soundbridge
  • ht5streamer
  • Intel Device Validator
  • Samsung AllShare play

Installation

$ npm install upnpserver

Command line

For command line, install upnpserver-cli package.

API Usage

    var Server = require("upnpserver");
    
    var server=new Server({ /* configuration, see below */ }, [
       '/home/disk1',
    	{ path: '/home/myDisk' },
    	{ path: '/media/movies', mountPoint: '/My movies'},
    	{ path: '/media/albums', mountPoint: '/Personnal/My albums', type: 'music' }
    ]);
    
    server.start();
     

##Configuration Server constructor accepts an optional configuration object. At the moment, the following is supported:

  • log Boolean Enable/disable logging. Default: false.
  • logLevel String Specifies log level to print. Possible values: TRACE, DEBUG, INFO, WARN, ERROR, FATAL. Defaults to ERROR.
  • name String Name of server. Default 'Node Server'
  • uuid String UUID of server. (If not specified, a UUID v4 will be generated)
  • hostname String Hostname to bind the server. Default: 0.0.0.0
  • httpPort Number Http port. Default: 10293
  • dlnaSupport Boolean Enable/disable dlna support. Default: true
  • strict Boolean Use only official UPNP attributes. Default: false
  • lang String Specify the language (en, fr) for virtual folder names. Default: en
  • ssdpLog Boolean Enable log of ssdp layer. Default: false
  • ssdpLogLevel String Log level of ssdp layer.

Author

Olivier Oeuillot

About

Fast and light upnp server for node

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%