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

@apimetrics/cli

v0.3.0

Published

CLI to interact with APImetrics, the unbiased SaaS Platform ensuring API products perform as agreed, are secure, meet business objectives, and comply with regulations.

Downloads

8

Readme

APImetrics CLI

An easy way to interact with APImetrics, the unbiased SaaS Platform ensuring API products perform as agreed, are secure, meet business objectives, and comply with regulations.

Install

Requirements

Networking

The CLI will require an internet connection that allows access to the following domains in order to function properly. If you are adding firewall rules to allow this, we highly suggest that your firewall is configured to refresh the IP addresses for the domains on a regular basis as they may change without prior notice.

| Domain | Ports | |----------------------|---------| | client.apimetrics.io | 80, 443 | | auth.apimetrics.io | 80, 443 |

Supported OS and architectures

Both x64 and ARM architectures are supported with the following operating systems:

| OS | Supported | |------------|--------------------| | Windows 11 | :white_check_mark: | | Windows 10 | :white_check_mark: | | Windows 7 | :x: | | Linux | :white_check_mark: | | macOS | :white_check_mark: |

Supported Node.js Versions

We support all current and LTS versions of Node.js. When a version moves to end of life, we will drop support. If you are currently using a version of Node.js that is currently end of life, we suggest you upgrade to a newer version. More information about currently supported Node.js versions is published by the Node.js Release Working Group.

| Version | Supported | |---------|--------------------| | 21.x | :white_check_mark: | | 20.x | :white_check_mark: | | 18.x | :white_check_mark: | | 16.x | :x: |

Methods

With npm

The CLI is built with Node.js and can be installed using npm. In order to use this method, you must have node and npm installed on your system already.

$ npm install -g @apimetrics/cli

Using Tarballs

These are standalone distributions containing their own Node.js binary and the CLI. They do not require any other software to already be installed on your system.

The tarballs are available in both gz and xz formats. xz is much smaller so ideal for slow connections, however gz has wider support from decompression software. If you are unsure, use gz.

Once you have downloaded the tarball for your system, you should then extract to a location such as /usr/local/bin/apimetrics and ensure that this location is on your PATH.

Usage

$ npm install -g @apimetrics/cli
$ apimetrics COMMAND
running command...
$ apimetrics (--version)
@apimetrics/cli/0.3.0 linux-x64 node-v18.18.2
$ apimetrics --help [COMMAND]
USAGE
  $ apimetrics COMMAND
...

Environment Variables

| Name | Required | Description | |-----------------------------|----------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------| | APIMETRICS_API_URL | :x: | Base URL for the API. Defaults to https://client.apimetrics.io/api/2/. | | APIMETRICS_TOKEN_URL | :x: | URL to use when requesting an access token for OAuth based login. Defaults to https://auth.apimetrics.io/oauth/token. | | APIMETRICS_CODE_URL | :x: | URL to use when requesting an authorization code for OAuth based login. Defaults to https://auth.apimetrics.io/oauth/device/code. | | APIMETRICS_REVOKE_URL | :x: | URL to use when revoking refresh tokens. Defaults to https://auth.apimetrics.io/oauth/revoke. | | APIMETRICS_USERINFO_URL | :x: | URL to use when fetching user info. Defaults to https://auth.apimetrics.io/userinfo. | | APIMETRICS_CLIENT_ID | :x: | Client ID to use for OAuth based login. | | APIMETRICS_CONFIG_DIR | :x: | Directory to store configuration for the CLI. Defaults to ~/.config/apimetrics on UNIX and %LOCALAPPDATA%\apimetrics on Windows. | | ~~XDG_CONFIG_HOME~~ | :x: | Directory to store configuration for the CLI. Not recommended for use. Use APIMETRICS_CONFIG_DIR instead. APIMETRICS_CONFIG_DIR takes priority if also set. |

Command Topics