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

@hereya/cli

v0.9.2

Published

Package manager for infrastructure libraries

Downloads

361

Readme

hereya-cli

Package manager for infrastructure libraries

oclif CircleCI GitHub license

Usage

$ npm install -g @hereya/cli
$ hereya COMMAND
running command...
$ hereya (--version)
@hereya/cli/0.9.2 linux-x64 node-v20.12.2
$ hereya --help [COMMAND]
USAGE
  $ hereya COMMAND
...

Commands

hereya add PACKAGE

add a package to the project

USAGE
  $ hereya add PACKAGE [-w <value>] [-f] [--parameters <value>]

ARGUMENTS
  PACKAGE  name of the package to add

FLAGS
  -f, --force              force redeployment of the module
  -w, --workspace=<value>  name of the workspace to add the package to
  --parameters=<value>...  parameters for the package, in the form of 'key=value'

DESCRIPTION
  add a package to the project

EXAMPLES
  $ hereya add

See code: src/commands/add.ts

hereya cdk exec NAME

deploy a CDK stack

USAGE
  $ hereya cdk exec NAME [-w <value>] [-p <value>] [--parameters <value>] [--destroy]

ARGUMENTS
  NAME  name of the package or module to add

FLAGS
  -p, --project=<value>    name of the project to add the package to
  -w, --workspace=<value>  name of the workspace to add the module/package to
  --destroy                destroy the stack
  --parameters=<value>...  parameters for the module, in the form of 'key=value'

DESCRIPTION
  deploy a CDK stack

EXAMPLES
  $ hereya cdk exec -w dev mymodule

See code: src/commands/cdk/exec.ts

hereya env

describe the command here

USAGE
  $ hereya env [-w <value>]

FLAGS
  -w, --workspace=<value>  name of the workspace to run the command in

DESCRIPTION
  describe the command here

EXAMPLES
  $ hereya env

See code: src/commands/env.ts

hereya help [COMMANDS]

Display help for hereya.

USAGE
  $ hereya help [COMMANDS] [-n]

ARGUMENTS
  COMMANDS  Command to show help for.

FLAGS
  -n, --nested-commands  Include all nested commands in the output.

DESCRIPTION
  Display help for hereya.

See code: @oclif/plugin-help

hereya install

deploy resources to support hereya operations in AWS

USAGE
  $ hereya install

DESCRIPTION
  deploy resources to support hereya operations in AWS

EXAMPLES
  $ hereya install

See code: src/commands/install.ts

hereya plugins

List installed plugins.

USAGE
  $ hereya plugins [--json] [--core]

FLAGS
  --core  Show core plugins.

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  List installed plugins.

EXAMPLES
  $ hereya plugins

See code: @oclif/plugin-plugins

hereya plugins:install PLUGIN...

Installs a plugin into the CLI.

USAGE
  $ hereya plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  Plugin to install.

FLAGS
  -f, --force    Run yarn install with force flag.
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Installs a plugin into the CLI.
  Can be installed from npm or a git url.

  Installation of a user-installed plugin will override a core plugin.

  e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
  will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
  the CLI without the need to patch and update the whole CLI.


ALIASES
  $ hereya plugins add

EXAMPLES
  $ hereya plugins:install myplugin 

  $ hereya plugins:install https://github.com/someuser/someplugin

  $ hereya plugins:install someuser/someplugin

hereya plugins:inspect PLUGIN...

Displays installation properties of a plugin.

USAGE
  $ hereya plugins:inspect PLUGIN...

ARGUMENTS
  PLUGIN  [default: .] Plugin to inspect.

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

GLOBAL FLAGS
  --json  Format output as json.

DESCRIPTION
  Displays installation properties of a plugin.

EXAMPLES
  $ hereya plugins:inspect myplugin

See code: @oclif/plugin-plugins

hereya plugins:install PLUGIN...

Installs a plugin into the CLI.

USAGE
  $ hereya plugins:install PLUGIN...

ARGUMENTS
  PLUGIN  Plugin to install.

FLAGS
  -f, --force    Run yarn install with force flag.
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Installs a plugin into the CLI.
  Can be installed from npm or a git url.

  Installation of a user-installed plugin will override a core plugin.

  e.g. If you have a core plugin that has a 'hello' command, installing a user-installed plugin with a 'hello' command
  will override the core plugin implementation. This is useful if a user needs to update core plugin functionality in
  the CLI without the need to patch and update the whole CLI.


ALIASES
  $ hereya plugins add

EXAMPLES
  $ hereya plugins:install myplugin 

  $ hereya plugins:install https://github.com/someuser/someplugin

  $ hereya plugins:install someuser/someplugin

See code: @oclif/plugin-plugins

hereya plugins:link PLUGIN

Links a plugin into the CLI for development.

USAGE
  $ hereya plugins:link PLUGIN

ARGUMENTS
  PATH  [default: .] path to plugin

FLAGS
  -h, --help      Show CLI help.
  -v, --verbose
  --[no-]install  Install dependencies after linking the plugin.

DESCRIPTION
  Links a plugin into the CLI for development.
  Installation of a linked plugin will override a user-installed or core plugin.

  e.g. If you have a user-installed or core plugin that has a 'hello' command, installing a linked plugin with a 'hello'
  command will override the user-installed or core plugin implementation. This is useful for development work.


EXAMPLES
  $ hereya plugins:link myplugin

See code: @oclif/plugin-plugins

hereya plugins:uninstall PLUGIN...

Removes a plugin from the CLI.

USAGE
  $ hereya plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ hereya plugins unlink
  $ hereya plugins remove

hereya plugins:uninstall PLUGIN...

Removes a plugin from the CLI.

USAGE
  $ hereya plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ hereya plugins unlink
  $ hereya plugins remove

See code: @oclif/plugin-plugins

hereya plugins:uninstall PLUGIN...

Removes a plugin from the CLI.

USAGE
  $ hereya plugins:uninstall PLUGIN...

ARGUMENTS
  PLUGIN  plugin to uninstall

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Removes a plugin from the CLI.

ALIASES
  $ hereya plugins unlink
  $ hereya plugins remove

hereya plugins update

Update installed plugins.

USAGE
  $ hereya plugins update [-h] [-v]

FLAGS
  -h, --help     Show CLI help.
  -v, --verbose

DESCRIPTION
  Update installed plugins.

See code: @oclif/plugin-plugins

hereya project init NAME

initialize a new project

USAGE
  $ hereya project init NAME -w <value>

ARGUMENTS
  NAME  name of the project to create

FLAGS
  -w, --workspace=<value>  (required) name of the workspace to set as current

DESCRIPTION
  initialize a new project

EXAMPLES
  $ hereya project init

See code: src/commands/project/init.ts

hereya remove PACKAGE

describe the command here

USAGE
  $ hereya remove PACKAGE [-w <value>]

ARGUMENTS
  PACKAGE  name of the package to remove

FLAGS
  -w, --workspace=<value>  name of the workspace to add the package to

DESCRIPTION
  describe the command here

EXAMPLES
  $ hereya remove

See code: src/commands/remove.ts

hereya run CMD

describe the command here

USAGE
  $ hereya run CMD [-w <value>]

ARGUMENTS
  CMD  command to run

FLAGS
  -w, --workspace=<value>  name of the workspace to run the command in

DESCRIPTION
  describe the command here

EXAMPLES
  $ hereya run

See code: src/commands/run.ts

hereya uninstall

remove hereya resources from your AWS account

USAGE
  $ hereya uninstall

DESCRIPTION
  remove hereya resources from your AWS account

EXAMPLES
  $ hereya uninstall

See code: src/commands/uninstall.ts

hereya workspace add MODULE

add a module to a workspace

USAGE
  $ hereya workspace add MODULE -w <value> [-f] [--parameters <value>]

ARGUMENTS
  MODULE  name of the module to add

FLAGS
  -f, --force              force redeployment of the module
  -w, --workspace=<value>  (required) name of the workspace to add the module to
  --parameters=<value>...  parameters for the module, in the form of 'key=value'

DESCRIPTION
  add a module to a workspace

EXAMPLES
  $ hereya workspace add -w dev mymodule

  $ hereya workspace add -w dev mymodule --parameters foo=bar --parameters baz=qux

See code: src/commands/workspace/add.ts

hereya workspace create NAME

create a new workspace

USAGE
  $ hereya workspace create NAME

ARGUMENTS
  NAME  name of the workspace to create

DESCRIPTION
  create a new workspace

EXAMPLES
  $ hereya workspace create dev

See code: src/commands/workspace/create.ts

hereya workspace remove MODULE

remove a module from a workspace

USAGE
  $ hereya workspace remove MODULE -w <value> [--parameters <value>]

ARGUMENTS
  MODULE  name of the module to add

FLAGS
  -w, --workspace=<value>  (required) name of the workspace to remove the module from
  --parameters=<value>...  parameters for the module, in the form of 'key=value'

DESCRIPTION
  remove a module from a workspace

EXAMPLES
  $ hereya workspace remove mymodule -w dev

See code: src/commands/workspace/remove.ts