1.0.0 • Published 6 years ago

makitso-vpn-plugin v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

Makitso plugin

Manage your 2FA VPN connections with Tunnelblick or Viscosity

A tool to make it just a little easier to connect to a VPN which requires that the pasword be a concatination of a static password and a 2FA token.

Provides Commands

CommandDescription
vpn connect <name> <token>Connect to VPN
vpn disconnect <name>Disconnect from VPN
vpn statusList connections and their state
yarn add makitso-vpn-plugin
"use strict";
const Makitso = require("makitso");
const VPN = require("makitso-vpn-plugin");

// const vpn = VPN.plugin({ client: "tunnelblick" });
const vpn = VPN.plugin({ client: "viscosity" });

Makitso({ plugins: [Makitso.Plugins(), vpn] }).catch(console.error);