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

@phoenixsoftware/ejes-cli

v1.1.5

Published

(E)JES RESTapi Manager for Zowe

Downloads

22

Readme

Zowe (E)JES REST API Manager Sample Plug-in

This repository contains a CLI program that uses the (E)JES V6R0 REST API . The plug-in and its components are sample programs provided to aid and enhance your experience using our (E)JES product. While you can install and/or examine the source code here, you will require a license from Phoenix Software International to use the underlying REST API and the (E)JES product.

Available CLIs

  • Zowe EJES API - A thin layer CLI demonstrating the full (E)JES REST API by mapping the (E)JES REST API directly to options. It returns JSON that can be used by Node.js or other scripting languages.
  • Zowe EJES Batch Shell - A full featured workstation implementation of (E)JES Batch on the host. Includes an enhanced meta command set to improve interactive use while still being suitable for workstation automation analogous to running EJES BATCH as a batch job on the host.
  • Zowe EJES Issue - A simple CLI written to submit jobs or issue host system commands.
  • Zowe EJES Log Stream - A one function CLI to display the operations or system log, with options to stream it continuously or to filter lines by using a find. This CLI is written completely in Typescript and would provide a good starting point for your Typescript project using the (E)JES REST API since it leverages all the endpoints.
  • Zowe EJES Query - A conventional CLI to automate data gathering from the host for users who do not need nor want to learn host (E)JES commands.

(top)

There is help for that...

Use the --help option with Zowe to see the Zowe documentation for running each CLI. There is different help at different levels, including examples.

  • zowe ejes --help
  • zowe ejes batch --help
  • zowe ejes batch status --help

Additionally, API, Batch, Issue, and Query provide detailed application specific help and usage information. Use the --helpApp or --ha option for that.

  • zowe ejes batch status --helpApp
  • zowe ejes batch status --ha meta      (For meta-command specific help)

You can also issue the help command in Zowe EJES Batch and use the argument help for any option in Zowe EJES Query. Additionally, you may use list for any argument in Zowe EJES Query to see the possible values for the argument.

(top)

Documentation

Use of Zowe and our CLIs is documented in chapter 11 of the (E)JES Reference. If you plan to use the Zowe plug-in but do not plan to develop it, please use to the section titled Installing the CLI using NPM instead of cloning the GitHub repository and either installing or building from there. Summary information for using this repository for your own (E)JES project can at the end of this document.

(top)

Project Goals

This project accomplishes the following goals to benefit Phoenix Software International customers:

  • Provides scriptable functionality to access (E)JES on the host from the workstation.
  • Uses Zowe CLI infrastructure (profiles and programmatic APIs) to provide secure access.
  • Demonstrates the use of REST API programmming.
  • Provides the greater Zowe community a Zowe Compliant example using Typescript modules and NPM modules.

(top)

Prerequisites

  • (E)JES V6R0 GA installed the host together with all current service.
  • Workstation OS is up to date
  • node
  • npm
  • zowe V1-LTS

Before you work with this plug-in, take a moment to ensure your operating system, node.js, and npm are up to date.

Next, if you haven't done so already, install the Zowe CLI globally. If you have Zowe installed, be sure to upgrade to the latest V1-LTS release.

(top)

Installing the CLI using NPM

Installing the CLI is the simpist and quickest way to be up and running with the Zowe (E)JES plugin. Depending on whether or not npm is installed in a privileged location, you may require administrative priveleges.

  1. npm install -g @phoenixsoftware/ejes-cli

  2. zowe plugins install @phoenixsoftware/ejes-cli

Optionally, to store all logon credentials contained in Zowe CLI profiles in an encrypted format:

  1. zowe plugins install @zowe/secure-credential-store-for-zowe-cli@zowe-v1-lts

(top)

Profiles

After installing the using NPM or from GitHub, you are required to create a profile into which to store your host credentials. Here is a prototype you can copy/paste and modify.

zowe profiles create ejes jes3 --protocol https --host yourhost.com --port 7554 --user myuid --password passw0rd --rejectUnauthorized true --basePath /api/v1/ejes3 --colorScheme dark --noColor off

Once your profile is created, you can use the following command to test the installation and connection to the host. Mind upper- and lowercasing as Zowe is sensitive to this, or just copy/paste.

zowe ejes query st -V

(top)

Create a Local Development Space

The repository on GitHub contains all the materials for installing or building the project.

Overview

To create your development space, clone and install the plug-in. The repository contains a trans-compiled /lib folder from the current source in the repository. This is so it can be immediately installed.

Create a local development folder named zowe-psi. You will clone and build the project in this folder.

Clone the repositories into your development folder to match the following structure:

zowe-psi
└── ejes-cli

The Package Lock File

A package-lock.json file is installed with this project from GitHub. This ensures that the same NPM packages installed when Phoenix Software built and tested this plug-in will be installed when you install the plug-in on your workstation.

If removed, NPM will install up-to-date versions of NPM modules in the node_modules directory. You might want to do this if you see any NPM module vulnerability warning when installing.

No NPM modules were used to develop the (E)JES part of the plug-in. However, the Zowe infrastructure upon which the plug-in is built uses NPM modules. Additionally, the (E)JES API, Batch, and Query CLIs are provided as NPM modules (that do not themselves use NPM modules), thus the package-lock specifies the specific version built and tested, not the latest version. For these reasons, you may decide to delete the provided package-lock.json file before running the npm install portion of the installation.

Clone the Zowe EJES CLI and Install

Please review the installation process in chapter 11 of the (E)JES Reference. What follows is a summary of installing from the repository. Depending on whether or not npm is installed in a privileged location, you may require administrative priveleges. In steps 4 and 5, mind the trailing period.

  1. cd to your zowe-psi folder
  2. git clone https://github.com/phoenixsoftware/ejes-cli
  3. cd ejes-cli
  4. npm install -g .
  5. zowe plugins install .

The plug-in is ready for use. You will require a Zowe profile for (E)JES. How to create on is detailed in profiles above.

Build the Zowe EJES CLI

Start Eclipse or VS Code. Load the project. Use the NPM script "build" to build after you have made changes. Create your own git repository and configure it in your IDE.

Zowe plug-in and CLI development is beyond the scope of this documentation.

(top)

Support

The programs stored in this repository are "distributed sample programs" as defined in chapter 18 of the (E)JES Reference. (E)JES customers may request support on a time-available basis by opening a new (E)JES Zowe case on the Phoenix Software International support portal. This is preferable to opening issues or making pull-requests on the GitHub repository.

(top)