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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@andywer/teleprompt

v0.1.0-alpha.15

Published

Command line client for teleprompt.io. Get interactive input from authenticated users in headless environments.

Downloads

49

Readme

Teleprompt client

Command line client for teleprompt.io. Enables you to get interactive input from authenticated users in headless environments like build jobs.

Use it to prompt a maintainer for a password, two factor authentication code, production certificate file or similar in CI. All data is end-to-end encrypted using X25519 asymmetric encryption.

Works in all Continuous Integration tools, like Travis CI, Circle CI, GitHub actions, GitLab CI, AppVeyor and others.

Installation

npm install --save-dev teleprompt

Usage

Usage
  teleprompt --prompt <name>:<type>[:<title>] [--prompt …]
    or
  teleprompt [--config <path>] [--prompt <name> [--prompt …]]

Options
  --api-key <key>           Use this API key to authenticate
  --config, -c <path>       Read prompt descriptions from a TOML or JSON file
  --disable-encryption      Disable end-to-end encryption
  --help                    Show this usage help text
  --link <url>              Add a custom backlink to this prompt
  --only <name>             Prompt for this value only, write raw value to stdout
  --output-format <format>  Output formatting, can be "json" (default), "cli", "raw"
  --prompt, -p              Request a value from the user
    <name>:<type>[:<title>] Type can be "password", "text", "otp", "file" or "select"
                            If type is "select",
  --title <title>           Set a title for this prompt
  --version                 Show the current version

If --api-key is not set the API key will be read from the .teleprompt.key file.
If --config is not set the teleprompt.{json,toml} file will be loaded if present.
Set --api-key or --config to "-" to read from stdin.

API key

To obtain an API key, login to teleprompt.io with your GitHub account and create a new project. A new API key will be created that you can save to a .teleprompt.key file (don't forget to .gitignore!) or set up as a secret environment variable in your build environment and pass to teleprompt using --api-key $KEY.

Configuration

Create a file called teleprompt.toml or .teleprompt.toml if you don't want to pass all the configuration using command line options or if your want to use dropdown inputs.

Here is a sample teleprompt.toml:

# the following project settings are all optional
title = "Authorize my thing"
link = "https://ci.example.org/build/\${BUILDREF}"
disableEncryption = false

[[prompts]]
name = "username"
type = "text"

[[prompts]]
name = "password"
type = "password"

[[prompts]]
name = "target"
type = "select"

[[prompts.choices]]
title = "Production"    # optional
value = "production"

[[prompts.choices]]
title = "Staging"       # optional
value = "staging"

License

MIT