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

rn-macos-ssh-sftp

v0.1.6

Published

SSH and SFTP client library for React Native on macOS

Readme

SSH and SFTP client library for React Native

SSH and SFTP client library for React Native on MacOS.

Compile package Publish package to npmjs.com

Installation

npm install rn-macos-ssh-sftp

macOS

Run pod install in your ./macos directory.

cd macos
pod install
cd -

[!TIP] Adding a postinstall script to your package.json file to run pod install after npm install is a good idea. The pod-install package is a good way to do this.

{
  "scripts": {
    "postinstall": "npx pod-install"
  }
}

Having OpenSSL issues on MacOS?

If you are using Flipper to debug your app, it will already have a copy of OpenSSL included. This can cause issues with the version of OpenSSL that NMSSH uses. You can disable flipper by removing/commenting out the flipper_configuration => flipper_config, line in your Podfile.

Android

No additional steps are needed for Android.

Linking

This project has been updated to use React Native v73 (the latest at the time of writing, Jan 2024) - which means that manual linking is not required.

Usage

All functions that run asynchronously where we have to wait for a result returns Promises that can reject if an error occurred.

[!NOTE] On macOS, this package currently doesn't support the simulator, you will need to have your app running on a physical device. If you would like to know more about this, see this issue. I'd welcome a PR to resolve this.

Create a client using password authentication

import SSHClient from 'rn-macos-ssh-sftp';

try{
  // Create SSH client with private keys
   const client = new SSHClient(
      '123.123.123.1', // server/ssh ip/host
      'port',
      'username',
      {
        privateKey,
        passphrase: '1234', // replace with your passphrase
      },
      10, // timeout
    );
  
    // Create SSH client with passowrd
     const client = new SSHClient(
      '123.123.123.1', // server/ssh ip/host
      'port',
      'username',
      'password',
      10, // timeout
    );

    await client.connect();
    console.log('SSH connected successfully...');
}catch(e){
  console.error(error)
}

#### Public key authentication is also supported

```plaintext
{privateKey: '-----BEGIN RSA......'}
{privateKey: '-----BEGIN RSA......', publicKey: 'ssh-rsa AAAAB3NzaC1yc2EA......'}
{privateKey: '-----BEGIN RSA......', publicKey: 'ssh-rsa AAAAB3NzaC1yc2EA......', passphrase: 'Password'}

Close client

client.disconnect();

Execute SSH command

const command = 'ls -l';
client.execute(command).then((output) => console.warn(output));

Shell

Start shell

  • Supported ptyType: vanilla, vt100, vt102, vt220, ansi, xterm
const ptyType = 'vanilla';
client.startShell(ptyType).then(() => {
  /*...*/
});

Read from shell

client.on('shell', (event) => {
  if (event) console.warn(event);
});

Write to shell

const str = 'ls -l\n';
client.writeToShell(str).then(() => {
  /*...*/
});

Close shell

client.closeShell();

SFTP

Connect SFTP

client.connectSFTP().then(() => {
  /*...*/
});

List directory

const path = '.';
client.list(path).then((response) => console.warn(response));

Download file

client.sftpDownload('[path-to-remote-file]', '[path-to-local-directory]').then((downloadedFilePath) => {
  console.warn(downloadedFilePath);
});

// Download progress (setup before call)
client.on('download', (event) => {
  console.warn(event);
});

// Cancel download
client.sftpCancelDownload();

Upload file

client.sftpUpload('[path-to-local-file]', '[path-to-remote-directory]').then(() => {
  /*...*/
});

// Upload progress (setup before call)
client.on('upload', (event) => {
  console.warn(event);
});

Close SFTP

client.disconnect();

Example app

You can find a very simple example app for the usage of this library here.

Credits

This package wraps the following libraries, which provide the actual SSH/SFTP functionality:

This package is a fork of Emmanuel Natividad's react-native-ssh-sftp package. The fork chain from there is as follows:

  1. Gabriel Paul "Cley Faye" Risterucci
  2. Bishoy Mikhael
  3. Qian Sha