aws-v-cli

0.3.0 • Public • Published

aws-v-cli

Description

AWS CLI node.js wrapper for Linux

Installation

Its recommended to install this globally

$ npm install aws-v-cli --global

Then just call it like so:

$ aws-v-cli --version

Using it directly

You can also integrate this into your project (that's the reason why this exist in the first place)

const { awsv } = require('aws-v-cli')

awsv(['--version'])
  .on('stdout', msg => {
    // do your thing
  })
  .on('stderr', err => {
    // handle it
  })
  .on('exit', code => {
    // handle it
  })

For the complete available options, please check the AWS Command Line Interface Documentation


MIT

Joel Chu (c) 2021

/aws-v-cli/

    Package Sidebar

    Install

    npm i aws-v-cli

    Weekly Downloads

    7

    Version

    0.3.0

    License

    MIT

    Unpacked Size

    10.6 kB

    Total Files

    14

    Last publish

    Collaborators

    • joelchu