1.0.0 • Published 8 years ago

nixstats v1.0.0

Weekly downloads
4
License
Apache-2.0
Repository
github
Last release
8 years ago

NIXStats.js is CLI and JavaScript Wrapper for NIXStats

Using as CLI

Install

Install it with npm install -g nixstats.

Usage

Go to NIXStats and generate your own API token.

Run nixstats config <your_token_goes_here>

Run nixstats now to see current servers situation.

npm.io

Help

Run nixstats --help for full CLI options.

Using as a JavaScript Wrapper for NIXStats API

Install

Install it with npm install nixstats -save.

Usage

var ns = require('nixstats');
var nsClient = new ns.NIXStatsClient('<<your_token_goes_here>');
nsClient.server.list().then((result) => {
  for(var server of result.servers) {
    //...
  }
});

About

  1. For full list of NIXStatsClient functions see index.js;
  2. All functions are returned as Promises;
  3. The result of each Promise is exactly as shown in the official documentation;

Looking forward

  • CLI output more useful information;
  • CLI more operations, history, details, etc;
  • Wrapper enable the user to choose between Promises or Callback;