npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@broadcom/endevor-for-zowe-cli

v7.7.6

Published

Endevor Plug-in for Zowe CLI

Downloads

785

Readme

Endevor Plug-in for Zowe CLI

This repository contains a command line interface (CLI) that interacts with Endevor. You can build it as either an independent CLI application or as a plug-in that can be installed into an existing application, such as Brightside.

The Endevor application is built on the Imperative Framework.

Use Cases

You can use the Endevor Plug-in for Zowe CLI to perform the following tasks without having to leave the ZOWE CLI interface: Check out source code that resides in Endevor, and work with the code in a non-mainframe IDE or editor such as Sublime, Visual Studio Code, or IntelliJ IDEA

Interact with Endevor application lifecycle actions, allowing easy scripting from CI/CD pipelines. Build code and integrate Endevor element code into wider packages. Access multiple data sources within a single CLI, enabling quick comparison and inclusion of data. Interact with Endevor for basic SCM inventory, which provides an alternative experience for end users, which enables easier learning and adoption. Build checked-in source for use in unit and functional test environments. Approve workflows in response to events in other DevOps tools.

Prerequisites

Before you install the plug-in, it is important to ensure that you meet the following prerequisites: Zowe CLI installed and configured. Endevor instance with the Endevor Web Services component installed

Build the Plug-in from Source and Link Endevor Application

Build plug-in from source and then link it to your Endevor application.

Follow these steps:

  1. Clone this repository to your PC as follws: Issue git clone https://github.com/your-username/your-repository Press Enter. The local clone is created.
  2. In a command line, issue cd [relative path]/endevor
  3. Issue npm install
  4. Issue npm run build
  5. Issue npm link

Install the Endevor SCM Plug-in for Zowe CLI

The Endevor Plug-in for Zowe CLI is associated with the following tags:

  • @latest
  • @zowe-v1-lts
  • @lts-incremental

Use of the @latest tag requires the active version (Version 2) of the Endevor REST API. Version 2 of the REST API is actively updated with new features and functionality.

The @zowe-v1-lts and @lts-incremental tags represent the stable version of the plugin, and require the stable version of the Endevor REST API (Version 1). Version 1 of the Endevor REST API is a reliable version without compatibility issues.

To install the active version of the plug-in, issue the following command:

zowe plugins install @broadcom/endevor-for-zowe-cli@latest

To install the stable version of the plug-in, issue the following command:

zowe plugins install @broadcom/endevor-for-zowe-cli@zowe-v1-lts

Note: The following command can also be used to install the stable version:

zowe plugins install @broadcom/endevor-for-zowe-cli@lts-incremental

Examples

The following examples show how Imperative CLI Framework features are implemented in the Endevor CLI.

Default Help

zowe endevor --help

 DESCRIPTION
 -----------

   Endevor plug-in for listing Endevor environment information, working
   with elements and packages located in specified Endevor instance.

 USAGE
 -----

   zowe endevor [group]

 COMMANDS
 --------

   add            Add an Element into Endevor.
   approve | aprv Approve a Package in Endevor.
   backin         Backin a Package in Endevor.
   backout        Backout a Package in Endevor.
   cast           Cast a Package in Endevor.
   create         Create a Package in Endevor.
   delete | del   Delete an Element or a Package in Endevor.
   deny           Deny a Package in Endevor.
   execute        Execute a Package in Endevor.
   generate | gen Generate an Element in Endevor.
   list           List instances, elements, types, packages and inventory
                  locations in Endevor.
   move | mv      Move an Element in Endevor.
   print | p      Print an Element or a Component in Endevor.
   reset          Reset a Package in Endevor.
   retrieve | ret Retrieve an Element in Endevor.
   signin | si    Signin an Element in Endevor.
   submit         Submit a Package or a SCL file in Endevor.
   transfer | tr  Transfer an Element in Endevor.
   update         Update an Element or a Package in Endevor.

 GLOBAL OPTIONS
 --------------

 --response-format-json  | --rfj (flag) (optional)

    Produce the command response as a JSON document

 --help  | -h (flag) (optional)

    Display help text

Uninstall the Plug-in

Issue the following command:

zowe plugins uninstall @broadcom/endevor-for-zowe-cli