Skip to content

Latest commit

 

History

History
19 lines (16 loc) · 259 Bytes

README.md

File metadata and controls

19 lines (16 loc) · 259 Bytes

node-xenapi

Usage

var xenapi = require("xenapi2")({
	host: "xen-server",
	port: "80"
});

xenapi.session.login("username", "password")
	.then(function () {
		xenapi.vmCollection.list().then(function (vms) {
			console.log(vms);
		});
	});