New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

node-neufbox

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-neufbox

API for Neufbox

latest
Source
npmnpm
Version
0.0.5
Version published
Maintainers
1
Created
Source

node-neufbox

Node module to interact with NeufBox v4 API

This projet is currently in progress, lot of stuff are not implemented yet.

How to install

npm install node-neufbox

How to use

To use, simple require Neufbox module

var neufbox = require('node-neufbox');

You can now access to public methods without authentification:

nb.getInfo(function(info){
  console.log(info.iad);
});

If you need authentification, use the connect method and provide your username and password

neufbox.connect( {username: 'admin', password: 'admin'}, function(){
  //do stuff...
}); 

Then you can use methods that require authentification:

nb.getDnsHostList(function(err, res){
    console.log(res);
});

Changelog

###0.0.5

  • Add generic method _makeRequest

FAQs

Package last updated on 25 Dec 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts