New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

lxc-control

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lxc-control

Control LXC containers easily from Node.js

latest
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

lxc-control

Control LXC containers from Node.js with a simple API.

📦 Install

npm install lxc-control

🚀 Usage

const lxc = require('lxc-control');

async function run() {
  await lxc.action('create', {
    name: 'mycontainer',
    dist: 'alpine',
    release: '3.19',
    arch: 'amd64'
  });

  await lxc.action('start', { name: 'mycontainer' });
  const info = await lxc.action('info', { name: 'mycontainer' });
  console.log(info);
}

Made By Ma4z

Keywords

lxc

FAQs

Package last updated on 09 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts