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

@reverb-app/cli

v1.0.1

Published

Log explorer for Reverb

Downloads

1

Readme

reverb-cli

As part of the Reverb project, this is a cli tool for interacting with it. This tool will allow you to emit events, read and filter logs, and even deploy Reverb to AWS.

Usage

To install reverb-cli, you must run this command:

npm install -g @reverb-app/cli

This will install the cli app globally so you can run commands with it. There are a number of topics and commands you can use. The folowing sections will be each topic and list the commands that can be used.

api

The api topic is used for configuring the global api configuration. While you can use flags to set this per command, it is generally useful to set a global default for all commands.

api:get

> reverb-cli api:get
{
  "apiUrl": "http://localhost:3001",
  "lambdaName": "reverb-stack-reverbupdatelambda",
  "apiKey": "your-api-key"
}

The api:get command will display your currently set api settings. Only apiUrl and apiKey are manually settable.

api:set-key

> reverb-cli api:set-key <key-value>
[Success]

The api:set-key command allows you to set the default api key you want to use when interacting with the API.

api:set-url

> reverb-cli api:set-url <url-to-your-api>
[Success]

The api:set-url command allows you to set the default api url you want to use when interacting with the API.

cdk

The cdk topic holds commands to interact with the Reverb CDK Project to deploy or destroy a Reverb deployment. To use any command from this topic requires a few things to be done first:

  1. Sign into the AWS CLI
  2. Install the CDK
  3. Bootstrap the CDK

cdk:deploy

> reverb-cli cdk:deploy

The cdk:deploy command deploys the basic infrastructure needed by Reverb to your AWS account.

cdk:destroy

> reverb-cli cdk:destroy

The cdk:destroy command completely removes Reverb from your AWS account. This will not leave any backups, it is a total removal.

dlq

The dlq topic is also the only command tied to it. It is used to interact with Reverb's dead letter queue logs. These logs show what functions never completed and give you metadata about them so that you can track down what went wrong.

> reverb-cli dlq [-u url-to-api] [-k api-key-value] [-e end-time-filter] [-s start-time-filter]

As said above, the dlq command shows a filtered list of jobs that were not able to be completed. There are a number of flags you can use with this command:

  • -u: Specify the url to the api you wish to connect
  • -k: Specify the key to the api you wish to connect. Typically used only with the -u flag on a non-default api.
  • -e: Specify the end date/time for the query.
    • Defaults to now
    • Must be parsable as a Javascript Datestring (see here)
  • -s: Specify the start date/time for the query.
    • Defaults to 7 days prior to the end date/time
    • Must be parsable as a Javascript Datestring (see here)

errors

The errors topic is also the only command tied to it.

> reverb-cli errors [-u url-to-api] [-k api-key-value] [-e end-time-filter] [-s start-time-filter]

The errors command shows a filtered list of error logs in a json format from the specific time period given.

  • -u: Specify the url to the api you wish to connect
  • -k: Specify the key to the api you wish to connect. Typically used only with the -u flag on a non-default api.
  • -e: Specify the end date/time for the query.
    • Defaults to now
    • Must be parsable as a Javascript Datestring (see here)
  • -s: Specify the start date/time for the query.
    • Defaults to 7 days prior to the end date/time
    • Must be parsable as a Javascript Datestring (see here)

events

The events topic contains commands that allow you to emit events, view events, and view all functions tied to a specific event.

events

> reverb-cli events [-u url-to-api] [-k api-key-value] [-e end-time-filter] [-s start-time-filter] [-n name-of-event]
event1 | 28268a12-9668-4b92-ad77-9bfd8801222a | Sun, 24 Mar 2024 00:14:41 GMT

The events command is used to lookup all events that fired within a specific time period and/or with a specific name. The output is separated into name | id | time. There are a number of flags you can use with this command:

  • -u: Specify the url to the api you wish to connect
  • -k: Specify the key to the api you wish to connect. Typically used only with the -u flag on a non-default api.
  • -e: Specify the end date/time for the query.
    • Defaults to now
    • Must be parsable as a Javascript Datestring (see here)
  • -s: Specify the start date/time for the query.
    • Defaults to 7 days prior to the end date/time
    • Must be parsable as a Javascript Datestring (see here)
  • -n: Specify the name of the event to be filtered.

events:emit

> reverb-cli events:emit [-u url-to-api] [-k api-key-value] name-of-event ['{"description": "Optional JSON formatted payload for event"}']
[Success]

The events:emit command is used to emit a name-of-event event to the api for Reverb to process. You may optionally pass a JSON formatted payload to be sent when emitting the event. There are a number of flags you can use with this command:

  • -u: Specify the url to the api you wish to connect
  • -k: Specify the key to the api you wish to connect. Typically used only with the -u flag on a non-default api.

events:status

> reverb-cli events:status [-u url-to-api] [-k api-key-value] id-of-event
🟢test-function | 00000000-ffff-aaaa-ffff-999999999999 | Sun, 24 Mar 2024 00:14:41 GMT

The events:status command gives you a run down of all functions fired by the specific event with id-of-event in the format [status-emoji]``function-name | invocation-id | last-updated-time. There are a number of flags you can use with this command:

  • -u: Specify the url to the api you wish to connect
  • -k: Specify the key to the api you wish to connect. Typically used only with the -u flag on a non-default api.

functions

The functions topic contains commands to view invoked functions and view logs tied to specific function invocations.

functions

> reverb-cli functions [-u url-to-api] [-k api-key-value] [-e end-time-filter] [-s start-time-filter] [-n name-of-event]
[Success] Showing functions from 2024-03-17T06:56:05.332Z to 2024-03-24T06:56:05.332Z:

cron-function | f622f15c-d759-4455-88dc-63c51c748336 | Sun, 24 Mar 2024 06:24:00 GMT | Sun, 24 Mar 2024 06:24:00 GMT

The functions command shows all functions invoked within the filters guidelines. The output is structured function-name | invocation-id | invoked-time | last-update-time. There are a number of flags you can use with this command:

  • -u: Specify the url to the api you wish to connect
  • -k: Specify the key to the api you wish to connect. Typically used only with the -u flag on a non-default api.
  • -e: Specify the end date/time for the query.
    • Defaults to now
    • Must be parsable as a Javascript Datestring (see here)
  • -s: Specify the start date/time for the query.
    • Defaults to 7 days prior to the end date/time
    • Must be parsable as a Javascript Datestring (see here)
  • -n: Specify the name of the function to be filtered.

functions:logs

> reverb-cli functions:logs [-u url-to-api] [-k api-key-value] invocation-id

The functions:logs command retrieves all JSON formatted logs for a function invocation with the id invocation-id. There are a number of flags you can use with this command:

  • -u: Specify the url to the api you wish to connect
  • -k: Specify the key to the api you wish to connect. Typically used only with the -u flag on a non-default api.