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

n8n-nodes-sendsafely

v1.1.1

Published

n8n node for SendSafely secure file transfer and encryption

Readme

n8n-nodes-sendsafely

This is an n8n community node that integrates with the SendSafely secure file transfer and encryption platform. It allows you to automate secure file sharing workflows within your n8n automation workflows.

npm version License: MIT CI

Features

  • Create and manage secure packages for file sharing
  • Upload files with end-to-end encryption
  • Download files securely
  • Add and remove package recipients
  • Full TypeScript support
  • Comprehensive error handling

Installation

Community Nodes (Recommended)

  1. In your n8n instance, go to Settings > Community Nodes
  2. Click Install a Community Node
  3. Enter n8n-nodes-sendsafely in the npm Package Name field
  4. Click Install
  5. Restart your n8n instance if required

Manual Installation

If you're self-hosting n8n, you can install this node manually:

npm install n8n-nodes-sendsafely

For Docker users, add to your Dockerfile:

RUN cd /usr/local/lib/node_modules/n8n && \
    npm install n8n-nodes-sendsafely

Or use the N8N_CUSTOM_EXTENSIONS environment variable:

docker run -it --rm \
  --name n8n \
  -p 5678:5678 \
  -e N8N_CUSTOM_EXTENSIONS="/path/to/n8n-nodes-sendsafely" \
  n8nio/n8n

Prerequisites

  • n8n version 2.0 or above
  • Node.js version 18 or above
  • A SendSafely account with API access

Credentials Setup

Obtaining SendSafely API Credentials

  1. Log in to your SendSafely account at https://app.sendsafely.com
  2. Click on your profile icon in the top-right corner
  3. Select API Keys from the dropdown menu
  4. Click Generate New API Key
  5. Copy the API Key and API Secret - you'll need both for n8n
  6. Note your Host URL (e.g., https://company.sendsafely.com or https://app.sendsafely.com)

Configuring Credentials in n8n

  1. In n8n, go to Credentials > New
  2. Search for and select SendSafely API
  3. Enter the following information:
    • Host: Your SendSafely host URL (e.g., https://app.sendsafely.com)
    • API Key: Your SendSafely API Key
    • API Secret: Your SendSafely API Secret
  4. Click Save

Supported Operations

Package Operations

  • Create Package: Create a new secure package for file sharing

    • Set package description
    • Specify package life (expiration)
    • Configure notification preferences
  • Get Package: Retrieve information about an existing package

    • Get package details and metadata
    • View recipient list
    • Check package status
  • Finalize Package: Finalize a package to make it available to recipients

    • Automatically sends notification emails
    • Locks the package from further modifications
  • Delete Package: Delete a package and all associated files

    • Permanently removes package
    • Revokes recipient access

File Operations

  • Upload File: Upload a file to a package

    • Binary data support
    • Automatic encryption
    • Progress tracking
  • Download File: Download a file from a package

    • Automatic decryption
    • Binary data output

Recipient Operations

  • Add Recipient: Add a recipient to a package

    • Email-based recipient management
    • Optional SMS verification
    • Custom access permissions
  • Remove Recipient: Remove a recipient from a package

    • Revoke access immediately
    • Audit trail maintained

Usage Examples

Example 1: Create Package and Upload File

{
  "nodes": [
    {
      "name": "Create Secure Package",
      "type": "n8n-nodes-sendsafely.sendSafely",
      "parameters": {
        "resource": "package",
        "operation": "create",
        "description": "Q4 Financial Reports",
        "life": 30
      }
    },
    {
      "name": "Upload File",
      "type": "n8n-nodes-sendsafely.sendSafely",
      "parameters": {
        "resource": "file",
        "operation": "upload",
        "packageId": "={{ $json.packageId }}",
        "binaryData": true,
        "binaryPropertyName": "data"
      }
    }
  ]
}

Example 2: Send Secure File to Multiple Recipients

  1. Create a package
  2. Upload file(s)
  3. Add recipients
  4. Finalize package (triggers notifications)

Example 3: Download and Process Files

  1. Get package details
  2. Download file from package
  3. Process the decrypted file data
  4. Save or forward as needed

Compatibility

  • n8n version: 2.0 or above
  • Node.js version: 18.0 or above
  • SendSafely API: v2.0

Resources

Development

Setup

# Clone the repository
git clone https://github.com/jedarden/n8n-nodes-sendsafely.git
cd n8n-nodes-sendsafely

# Install dependencies
npm install

# Build the project
npm run build

# Run tests
npm test

# Lint code
npm run lint

Testing Locally

  1. Build the node: npm run build
  2. Link to your n8n installation: npm link
  3. In your n8n directory: npm link n8n-nodes-sendsafely
  4. Restart n8n

Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

Support

Security

This node handles sensitive data and credentials. Please ensure:

  • Never commit API credentials to version control
  • Use n8n's credential encryption features
  • Keep your n8n instance and this node up to date
  • Follow SendSafely's security best practices

To report security vulnerabilities, please email [email protected] instead of using the issue tracker.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Acknowledgments

  • Built for the n8n workflow automation platform
  • Powered by the SendSafely API
  • Thanks to the n8n community for support and feedback

Changelog

See CHANGELOG.md for a list of changes and version history.


Made with care by the n8n community