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 🙏

© 2026 – Pkg Stats / Ryan Hefner

apisign-io

v0.1.1

Published

CLI tool for managing APISign templates and contracts

Readme

APISign CLI

A command-line interface for managing APISign contracts and templates.

Installation

npm install -g apisign-io

Or using Bun:

bun add -g apisign-io

Quick Start

  1. Initialize and authenticate:
apisign init
apisign auth login
  1. List your templates:
apisign template list
  1. Create a contract from a template:
apisign contract create -t TEMPLATE_ID -n "My Contract"
  1. Send contract for signing:
apisign contract send CONTRACT_ID -e [email protected]

Authentication

The CLI supports two authentication methods:

API Key Authentication

apisign auth login --api-key YOUR_API_KEY

Create a key in the dashboard under Account > API Keys.

Browser Authentication

Not available yet. apisign auth login without --api-key calls an endpoint (/auth/cli) that the API does not implement, and will fail.

Check Authentication Status

apisign auth status

Logout

apisign auth logout

Template Management

List Templates

apisign template list
apisign template ls              # alias
apisign template list --json     # JSON output

Get Template Details

apisign template get TEMPLATE_ID
apisign template get TEMPLATE_ID --json
apisign template get TEMPLATE_ID -o template.html

Create Template

# Interactive mode
apisign template create -i

# From file
apisign template create -f template.html -n "My Template"

# Upload file
apisign template upload document.pdf -n "PDF Template"

Update Template

apisign template update TEMPLATE_ID -n "New Name"
apisign template update TEMPLATE_ID -f updated.html

Delete Template

apisign template delete TEMPLATE_ID
apisign template delete TEMPLATE_ID -y  # Skip confirmation

Contract Management

List Contracts

apisign contract list
apisign contract ls                          # alias
apisign contract list --status sent          # Filter by status
apisign contract list --json                 # JSON output

Status options: draft, sent, signed, cancelled

Get Contract Details

apisign contract get CONTRACT_ID
apisign contract get CONTRACT_ID --json
apisign contract get CONTRACT_ID -o contract.pdf

Create Contract

# Interactive mode
apisign contract create -i

# From template
apisign contract create -t TEMPLATE_ID -n "Contract Name"

Send Contract for Signing

# Single signer
apisign contract send CONTRACT_ID -e [email protected]

# Multiple signers
apisign contract send CONTRACT_ID -e [email protected] [email protected]

# With custom message
apisign contract send CONTRACT_ID -e [email protected] -m "Please sign by Friday"

Cancel Contract

apisign contract cancel CONTRACT_ID
apisign contract cancel CONTRACT_ID -r "Changed requirements"

Delete Contract

apisign contract delete CONTRACT_ID
apisign contract delete CONTRACT_ID -y  # Skip confirmation

View Audit Logs

apisign contract logs CONTRACT_ID
apisign contract logs CONTRACT_ID --json

Configuration

View Configuration

apisign config
apisign config --json

Configuration File Location

The CLI stores configuration in ~/.apisign/config.json

Environment Variables

  • APISIGN_API_URL - Override the API URL (default: https://apisign.io)

Development

Install Dependencies

bun install

Run in Development

bun run dev

Build

bun run build              # Build for Node.js
bun run build:standalone   # Build standalone executable

Link for Local Testing

bun run link:local

Publishing

The package is configured for public npm publishing:

npm publish

License

MIT