🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

@nexrender/provider-sftp

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nexrender/provider-sftp

Allows nexrender to interact with an external SFTP server to upload results of rendering.

1.50.5
latest
npm
Version published
Weekly downloads
491
35.26%
Maintainers
1
Weekly downloads
 
Created
Source

Provider: SFTP

Allows nexrender to interact with an external SFTP server to upload results of rendering.

Refer to theophilusx/ssh2-sftp-client for information regarding general abilities and usage.

Installation

npm i @nexrender/provider-sftp -g

Usage (upload)

Upload via SFTP can be done using @nexrender/action-upload

Basic params info:

  • host - string - The hostname or IP address of the FTP server. Default: 'localhost'
  • port - integer - The port of the FTP server. Default: 21
  • user - string - Username for authentication. Default: 'anonymous'
  • password - string - Password for authentication. Default: 'anonymous@'
  • output - string - Optional argument to notify how you want to save your file on a remote machine as

Example:

{
    "actions": {
        "postrender": [
            {
                "module": "@nexrender/action-upload",
                "input": "result.mp4",
                "provider": "sftp",
                "params": {
                    "host": "sftp.example.com",
                    "port": 22,
                    "user": "root",
                    "password": "pass123123",
                    "output": "/var/mystuff/output.mp4"
                }
            }
        ]
    }
}

FAQs

Package last updated on 16 Mar 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts