btpanel-node-sdk
v1.0.6
Published
BtPanel SDK writing in Node.js
Downloads
6
Maintainers
Readme
BT-PANEL SDK
SDK for access all api endpoints in panel.
How use
yarn add btpanel-node-sdk
# Or
npm install btpanel-node-sdk
import { getDiskInfo, Login } from 'btpanel-node-sdk';
// Under construction. Totally temporary
Login.secret_key = 'secret';
Login.URL = 'http://000.00.000.000:0000';
// You may use Promises or Aysnc/Await.
getListOfWebsites().then((resp) => console.log(resp.data[0].name));
// Return: example.com
Documentation coming soon.
⚠ Under construction.