A client for communicating with a local or remote instance of linux containers. The interface is object-oriented, simple and uniform. Unrestrictive with an open MIT license.
Installing
$ npm install --save node-lxd
Getting Started
The following example connects to the local LXC instance and launches a new container.
var lxd = ; var client = ; client;
Example
The following example uses an express application to allow users to create containers and execute commands.
// requiresvar express = ;var lxd = ;var client = ;var app = ; var containers = {}; app; app; app;
Documentation
The client class is documented here.
The container class is documented here.
The process class is documented here.