JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 30
  • Score
    100M100P100Q37557F
  • License BSD

Command line tool for building Commands with Servant (http://www.getservant.com)

Package Exports

  • servant-cli

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (servant-cli) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Servant Command Line Tool

Develop, test and upload Servant Commands onto AWS Lambda with a few simple commands.

Quick-Start

  1. Install the Servant CLI with npm:

    npm install servant-cli -g
  2. Register a Servant Extension @ http://www.getservant.com

  3. Create a folder on your computer for your Servant Extension. cd into it and run this to create boilerplate files:

    $ servant init
  4. Register a Servant Command in your Servant Extension @ http://www.getservant.com

  5. Copy the Command ID from your newly registered Command and use it in this command to create boilerplate files for your command:

    $ servant command -n <COMMAND_NAME> -i <COMMAND_ID>
  6. Run/test the command locally with this:

    $ servant run -c <COMMAND_NAME>