Skip to content

ncb000gt/node-ventstatus

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ventstatus

A module to give you data related to the status of a ventrilo server. This module uses ventrilo_status which is provided as part of a ventrilo server. If you'd like to use this module you'll need that and to provide a config file.

Config

  var config = {
    cmd: </path/to/ventrilo_status>,
    host: <ventrilo.host.com>,
    port: <ventrilo port>
  };

You can also add in code which can be set to 1 or 2.

  • 1 provides cursory details.
  • 2 provides channel and user details.

Usage

  var ventstatus = require("ventstatus")(config);
  
  ventstatus.getStatus(function(err, data) {
    if (err) throw err;
    console.log(data);
  });

License

MIT

About

Ventrilo server status module for Node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published