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

zeeve

v2.5.0

Published

Zeeve CLI tool for interacting with Zeeve services.

Downloads

219

Readme

Zeeve CLI Tool

A CLI tool to access Zeeve's services.

Installation

npm i -g zeeve

Commands

Login command

The login command logs in with provided cli configuration which requires cli access key , cli secret key , login endpoint , deployment endpoints for deploying corda or other applications.

It also has an option for agent server address which helps in spawning the agent which connects with the ncs.

This is a one time process for each cli credential i.e. you dont have to login everytime you deploy your application .

If you want to deploy with different endpoint or cli credential , you will have to call login command again with the changed configuration.

Usage : zeeve login [options]

Options:

  -i, --access-id <access-id>              Auth Access ID
  -s, --secret <secret>                    Auth Secret
  -ae, --login-endpoint <endpoint>         Endpoint for cli login
  -ce, --corda-deploy-endpoint <endpoint>  corda deployment endpoint
  -ws, --ws-server-address <address>      web socket server address for agent
  -fe, --fabric-endpoint <endpoint>       fabric backend endpoint
  -h, --help                               display help for command

Example

zeeve login -i a3as3d3d3s4 -s s4s46s46s4sSs4 -ae https://a.example.com/login -ce https://b.example.com/deploy -ws wss://c.example.com -fe https://d.example.com/fabric-backend

Deploy command

Deploy command simply schedules the application (corda ) for deployment . This command just requires a path to application tar file to be uploaded and a network id of the network where the application will be deployed .

The command starts with a protocol name i.e. corda followed by its deploy command .

Usage : zeeve corda corda-deploy [options]

Options:


  -f, --file-path <file-path>    File path for cordapp zip file
  -n, --network-id <network-id>  Id of the Network
  -h, --help                     display help for command

Example

zeeve corda corda-deploy -f /some/path/to/application.tar.gz -n d3d3f5f445f45Y3

Install Command

zeeve install command lets you install plugins for zeeve cli.

Available Plugins:

  1. Corda Enterprise plugin.

Usage:

 zeeve install corda-enterprise-plugin [version] 

version: version of the corda enterprise plugin.

Example

zeeve install corda-enterprise-plugin 1.0.0 

Note: argument version is optional. latest version of corda enterprise plugin will be installed if not given.

after installation you can access the corda enterprise commands with zeeve corda enterprise

read more about corda enterprise plugin here