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

assinafy

v1.0.4

Published

TypeScript SDK for Assinafy API - Digital signature platform

Readme

Assinafy

TypeScript SDK for the Assinafy API - A digital signature platform for Brazil.

Installation

npm install assinafy
# or
bun add assinafy

Usage

import { AssinafyClient } from 'assinafy';

const client = new AssinafyClient({
  token: 'your-api-token',
  accountId: 'your-account-id'
});

// Upload a document
const document = await client.documents.upload(pdfBuffer, 'contract.pdf');

// Create a signer
const signer = await client.signers.create({
  full_name: 'John Doe',
  email: '[email protected]'
});

// Create assignment
await client.documents.createAssignment(document.id, {
  method: 'virtual',
  signerIds: [signer.id]
});

// Get document details
const details = await client.documents.details(document.id);

// Download signed document
const signedPdf = await client.documents.download(document.id, 'certificated');

API Reference

Client Initialization

const client = new AssinafyClient({
  token: string;       // Required: Your Assinafy API token
  accountId?: string;  // Optional: Default account ID for all operations
  baseUrl?: string;    // Optional: Custom API base URL
});

Multi-Account Support

All methods that require an account ID accept an optional accountId parameter to override the default:

// Using default account ID
const client = new AssinafyClient({
  token: 'your-token',
  accountId: 'default-account'
});
await client.documents.upload(buffer, 'file.pdf');

// Override for specific calls
await client.documents.upload(buffer, 'file.pdf', 'other-account');
await client.signers.list(undefined, 'other-account');

// Without default account ID (must provide per-call)
const client = new AssinafyClient({ token: 'your-token' });
await client.documents.upload(buffer, 'file.pdf', 'account-123'); // required

Documents

  • upload(buffer: Buffer, fileName: string, accountId?: string) - Upload a PDF document
  • list(accountId?: string) - List all documents
  • details(documentId: string) - Get document details
  • download(documentId: string, artifactName?) - Download document artifact
  • delete(documentId: string) - Delete a document
  • createAssignment(documentId: string, data) - Create signing assignment
  • resendSignerEmail(documentId, assignmentId, signerId) - Resend email to signer

Signers

  • create(data: ICreateSignerPayload, accountId?: string) - Create a new signer
  • list(search?: string, accountId?: string) - List signers with optional search
  • update(signerId: string, data: IUpdateSignerPayload, accountId?: string) - Update a signer (only if not associated with active documents)
  • delete(signerId: string, accountId?: string) - Delete a signer

Workspaces

  • create(data: ICreateWorkspacePayload) - Create a new workspace
  • list() - List all workspaces (ordered by last interaction)
  • get(accountId: string) - Get workspace details
  • update(accountId: string, data: IUpdateWorkspacePayload) - Update a workspace
  • delete(accountId: string) - Delete a workspace

Development

# Install dependencies
bun install

# Run tests
bun test

# Build
bun run build

# Lint
bun run lint

License

MIT