@bennetgallein/proxmoxcp-api
v1.4.0
Published
TypeScript client for the ProxmoxCP APIs
Downloads
15
Readme
ProxmoxCP API Wrapper for TypeScript/JavaScript
This is a fully typed javascript client for the Proxmox Control Panel.
[!NOTE]
This is an API-Wrapper library for the ProxmoxCP, which is a self-developed product. It does NOT offer direct communication via API to Proxmox. Checkout the ProxmoxCP on my website.
Getting started
Installation:
npm i @bennetgallein/proxmoxcp-api
Create a new instance:
// init base
const instance = new ProxmoxCpApi(
"http://localhost:8888"
);
// get instance for working with packages
const packages = instance.packages();
// list all packages
const allPackages = packages.list();