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

@spacesign/n8n-nodes-spacesign

v0.1.1

Published

n8n nodes for the SpaceSign eSignature platform

Readme

n8n-nodes-spacesign

Community nodes that connect SpaceSign with n8n so you can automate end-to-end signature workflows: create documents, generate from templates, manage recipients/fields, and capture webhook events.

Installation

Follow the n8n community nodes installation guide.

via Community Nodes UI (recommended)

  1. Open Settings → Community Nodes inside n8n.
  2. Click Install and enter @spacesign/n8n-nodes-spacesign.
  3. Accept the community node risks warning.
  4. Confirm to install.

via npm

Run in the root of your self-hosted n8n instance:

npm install @spacesign/n8n-nodes-spacesign

via Docker

Add the package to the N8N_COMMUNITY_PACKAGES env var:

services:
  n8n:
    image: docker.n8n.io/n8nio/n8n
    environment:
      - N8N_COMMUNITY_PACKAGES=@spacesign/n8n-nodes-spacesign

Credentials

The SpaceSign nodes use API-key authentication:

  • API Key – created in SpaceSign Settings → API Tokens (format api_XXXX).
  • Base URL – defaults to https://space-sign.ai/api/v1 but can point at any self-hosted/staging tenant.
  • Additional Headers – optional name/value pairs for custom reverse proxies.

Credential test performs GET /documents?page=1&perPage=1 to validate the token.

Nodes

SpaceSign (action node)

Resources and operations:

  • Document – list/get/create/upload/send/resend/delete documents.
  • Template – list/get/delete templates and generate documents from templates with recipient overrides, metadata, prefill fields, and auth options.
  • Recipient – add/update/delete recipients on an existing document.
  • Field – add/update/delete fields with advanced metadata.

The create + generate flows support JSON overrides for metadata, auth options, PDF form values, and prefill field payloads so you can map dynamic data from upstream nodes.

SpaceSign Trigger

  • Accepts SpaceSign webhook payloads for events such as document created/sent/opened/signed/completed/rejected/cancelled.
  • Optional secret validation against the X-Space-E-Sign-Secret header.
  • Reminder notice to register the webhook URL manually inside SpaceSign Settings → Webhooks.

Usage examples

Create a document with recipients

  1. Create n8n credentials named SpaceSign API with your API key and (optionally) a custom base URL.
  2. Drop a SpaceSign node into your workflow, set Resource to Document, Operation to Create Document, and wire upstream data into the title, recipients, and optional JSON fields.
  3. Example node configuration exported from n8n for quick reference:
{
  "name": "SpaceSign - Create",
  "parameters": {
    "resource": "document",
    "operation": "createDocument",
    "title": "{{ $json.projectName }} Contract",
    "recipients": {
      "recipient": [
        {
          "name": "{{ $json.client.name }}",
          "email": "{{ $json.client.email }}",
          "role": "SIGNER",
          "signingOrder": 1
        },
        {
          "name": "Success Team",
          "email": "[email protected]",
          "role": "CC",
          "signingOrder": 2
        }
      ]
    },
    "additionalFields": {
      "externalId": "{{ $json.contractId }}",
      "metaJson": "{{ $json.metadata }}"
    }
  },
  "credentials": [{ "name": "spaceSignApi", "id": "SpaceSign API" }]
}

This snippet shows how to map incoming JSON data (for example from a Webhook or CRM node) directly into the SpaceSign node fields.

Listen for SpaceSign events

  1. Add a SpaceSign Trigger node and pick the events you want (e.g., Document Completed).
  2. Copy the webhook URL shown in n8n and register it inside SpaceSign Settings → Webhooks.
  3. (Optional) Set a secret in both SpaceSign and the trigger node so unsolicited requests fail with 401.
  4. Use the trigger output (document status, recipient info, timestamps) to branch the rest of your workflow.

Development

Requirements:

  • Node.js >=22.0.0
  • npm >=10.7.0

Useful scripts:

npm run dev     # TypeScript watch mode
npm run lint    # ESLint checks
npm run build   # Compile TypeScript + copy icons
npm run test    # Lint + type-check without emitting

Build output lands in dist/ and is referenced inside package.jsonn8n block for publishing.