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

ehcli

v0.7.5

Published

Employment Hero CLI

Downloads

63

Readme

Deployer

Employment Hero CLI

CircleCI Airbnb-js-style

A CLI application to interact with Employment Hero microservices infrastructure.

Installation:

  • Using npm : npm install -g ehcli
  • Using yarn: yarn global add ehcli

Usages:

  Usage: hero [options] [command]


  Commands:

    apps:list|apps [options]                            list your apps
    apps:info|info [options]                            show detailed app information
    apps:status|status [options]                        show app deployment status
    apps:create|create [options] <name> <chart>         create a new app definition based on chart and push to Firebase
    apps:setup|setup [options] <manifest>               setup app for the first time based on provided manifest (app.json)
    apps:init|init [options] <manifest>                 initialize app based on provided manifest (app.json).This replaces repo:create + app:create + app:setup.
    apps:restart|restart [options]                      restart app
    apps:scale|scale [options] <key=value> [others...]  scale an app
    releases:list|releases [options]                    display the releases for an app
    releases:rollback|rollback [options]                rollback a release of an app to a certain revision
    config:get|config [options] [key]                   display the config vars for an app
    config:set [options] <key=value> [others...]        set one or more config vars
    config:unset [options] <key>                        unset a config var
    version                                             print the client/server version information
    logs [options]                                      display recent log output
    ci:build|build [options] <manifest>                 build docker image based on provided manifest (app.json)
    ci:push|push [options] <manifest>                   push docker image based on provided manifest (app.json)
    ci:pull|pull [options] <manifest>                   pull docker image based on provided manifest (app.json)
    ci:deploy|deploy [options] <manifest>               deploy new version based on provided manifest (app.json)
    manifest:validate <manifest>                        validate a manifest file (app.json)
    manifest:get <manifest> <jsonPath>                  get a field from manifest file (app.json)
    auth:login|login [options]                          login with your Github credentials
    auth:logout|logout                                  clear local authentication credentials
    auth:token|token                                    display your api token
    auth:whoami|whoami                                  display your account details
    run [options] <command> [args...]                   run a one-off process inside a Kubernetes container
    procs:list|procs [options]                          list your app's procs
    repos:create <name>                                 create a new repo in Amazon EC2 Container Registry
    files:add [options] <name> <filepath>               add a file
    files:rm [options] <name>                           remove a file
    slack:notify <channel> <text>                       send notification to slack channel
    endpoints:list|endpoints [options]                  list your endpoints
    endpoints:create [options] <manifest>               create an endpoint in Kong (app.json)
    help                                                output usage information

  Options:

    -h, --help     output usage information
        --dry-run  simulate the command

  Examples:

    $ hero apps:list --context $STAGING_CLUSTER                          # list all apps
    $ hero apps --context $STAGING_CLUSTER                               # same as above, apps is an alias for apps:list
    $ hero config:get -a announcement-api --context $STAGING_CLUSTER     # get all env config for app announcement-api