Skip to content

Node.js module to interact with Proxmox VE API

License

Notifications You must be signed in to change notification settings

wow0000/lib-proxmox

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lib-proxmox

Node.js Module to interact with Proxmox VE API. Using callbacks, operations are non blocking.

  • 0 Dependencies required.
  • Tested on Proxmox-VE 6.3-6

Usage

function callback(data){
  console.log(data);
}

const px = require('node-proxmox')('hostname', 'username', 'authtype', 'password');
const body = {}
px.get('/nodes/', callback(data));
px.post('/nodes/{node}/storage/{storage}/content/{volume}', body, callback(data));
px.put('/nodes/{node}/dns', body, callback(data));
px.del('/nodes/{node}/storage/{storage}/content/{volume}', callback(data));

Ressources

About

Node.js module to interact with Proxmox VE API

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%