Socket
Book a DemoInstallSign in
Socket

vagrant

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

vagrant

Vagrant CLI wrapper

latest
Source
npmnpm
Version
0.0.1
Version published
Maintainers
1
Created
Source

Vagrant for Node.js

This module is a programatic wrapper around the vagrant CLI tool.

Note: vagrant must be installed to use this, it's only a wrapper

Installation

npm i vagrant

Usage

All commands are run with child_process.spawn and the stdio is set to inherit passing along process.env.


var vagrant = require('vagrant');

//From a dir with a Vagrantfile, this will ssh into the VM
vagrant.ssh(function(code) {
    //vagrant is done
});

vagrant.up(function(code) {
    //vagrant is done
});

//Arguments passed as an array
vagrant.init(['foo', 'http://foobar.com'], function(code) {
    //vagrant is done
});

Build Status

Build Status

Node Badge

NPM

Keywords

vagrant

FAQs

Package last updated on 14 Aug 2013

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