0.12.0 • Published 6 years ago

node-3scale-cli v0.12.0

Weekly downloads
3
License
-
Repository
github
Last release
6 years ago

3scale CLI

Overview

This repository contains the command line utility for the API management solution 3scale.net.

Its main capabilities include importing an API definition (Open API / Swagger or RAML) into 3scale and:

1) Importing and API definition (Open API / Swagger or RAML) to define your API 2) Creating interactive documentation (ActiveDocs)

Additionally, you can also:

Note: Get familiar with the 3scale terminology reading through our support documentation.

Install

To install run the command

npm install -g node-3scale-cli

Get started looking at the options by running the 'Help' command: 3scale-cli --help

To see specific help for each one of the options, for example "activedocs", run: 3scale-cli activedocs --help

Prerequisites

Config

Before using the CLI tool you need to configure it and link it to your 3scale account:

3scale-cli config
[ 3scale-cli ] Please answer the following questions to configure 3scale cli.
? 3scale access token 1234567890abc
? 3scale id awesome-api
? 3scale wildcard domain (3scale.net)
[3scale-cli] 3scale cli tool configured

output from terminal

Your 3scale id corresponds to the domain of your 3scale admin portal as in 3scale_id-admin.3scale.net.

Your access token can be created and obtained according to the tutorial.

Access Token

Config for on-prem

Some on-prem users had issues regarding hitting 3scale API on onprem installations as reported here. The tool should be called with the NODE_TLS_REJECT_UNAUTHORIZED flag. example: NODE_TLS_REJECT_UNAUTHORIZED=0 3scale-cli services list

Debug/verbose mode

A debug mode is available. To turn it on just add DEBUG=* before your calls. It will print all debugs instructions.

Ex: DEBUG=* 3scale-cli services list

You can also turn debugs only for a specific part of the tool. Ex: DEBUG=3scale-cli:acounts:* ... DEBUG=3scale-cli:services:* ...

Contribute

3scale-cli is open source, and we welcome anybody who wants to participate and contribute!

If you want to fix a bug or make any changes, please log an issue in GitHub describing the bug or new feature.

Get the code

The easiest way to get started with the code is to create your own fork of this repository, and then clone your fork:

  $ git clone git@github.com:<you>/3scale-cli.git
  $ cd 3scale-cli
  $ git remote add upstream git://github.com/3scale/3scale-cli.git

At any time, you can pull changes from the upstream and merge them onto your master:

  $ git checkout master               # switches to the 'master' branch
  $ git pull upstream master          # fetches all 'upstream' changes and merges 'upstream/master' onto your 'master' branch
  $ git push origin                   # pushes all the updates to your fork, which should be in-sync with 'upstream'

The general idea is to keep your 'master' branch in-sync with the 'upstream/master'.

Make a fix

If you want to fix a bug or make any changes, please log an issue in GitHub describing the bug or new feature. Then we highly recommend making the changes on a branch named with the issue number. For example, this command creates a branch for the issue #17 :

  $ git checkout -b 3scale-cli-issue-17

After you're happy with your changes and a full build (with unit tests) runs successfully, commit your changes on your topic branch. Then it's time to check for and pull any recent changes that were made in the official repository:

  $ git checkout master               # switches to the 'master' branch
  $ git pull upstream master          # fetches all 'upstream' changes and merges 'upstream/master' onto your 'master' branch
  $ git checkout 3scale-cli-issue-17   # switches to your topic branch
  $ git rebase master                 # reapplies your changes on top of the latest in master
                                      # (i.e., the latest from master will be the new base for your changes)

Push your changes and generate a pull-request

Please try to create one commit per feature or fix, generally the easiest way to do this is via git squash. This makes reverting changes easier, and avoids needlessly polluting the repository history with checkpoint commits.

Building 3scale-cli

Requirements

  • NodeJS

Building

  $ npm install

Running

  $ bin/3scale-api

License

The MIT License (MIT)

Copyright (c) 2015 3scale Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0.12.0

6 years ago

0.11.2

6 years ago

0.11.1

6 years ago

0.10.7

7 years ago

0.10.6

7 years ago

0.10.5

7 years ago

0.10.4

7 years ago

0.10.3

7 years ago

0.10.2

7 years ago

0.10.1

7 years ago

0.10.0

7 years ago

0.9.2

7 years ago

0.9.1

7 years ago

0.9.0

8 years ago

0.7.5

8 years ago

0.7.4

8 years ago

0.7.3

8 years ago

0.7.2

8 years ago

0.7.1

8 years ago

0.7.0

8 years ago

0.6.0

8 years ago

0.5.1

9 years ago

0.4.3

9 years ago

0.4.2

9 years ago

0.4.1

9 years ago

0.4.0

9 years ago

0.3.6

9 years ago

0.3.4

9 years ago

0.3.3

9 years ago

0.3.2

9 years ago

0.3.1

9 years ago

0.3.0

9 years ago

0.2.5

9 years ago

0.2.4

9 years ago

0.2.3

9 years ago

0.2.2

9 years ago

0.2.1

9 years ago

0.2.0

9 years ago

0.1.1

9 years ago

0.1.0

9 years ago

0.0.1

9 years ago