Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

neo-scp

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

neo-scp

A pure JS real scp module based on ssh2 module

  • 0.1.4
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
increased by33.33%
Maintainers
1
Weekly downloads
 
Created
Source

Neo SCP

npm npm GitHub

Neo SCP is a lightweight real SCP module based on ssh2 module.
This module is inspired by scp1.

This module is still in beta, optimizations and new features will coming in future releases.

Installation

npm install neo-scp

Usage

In order to use Neo SCP you must pass to NeoScp instance an ssh2 connection as follow.

const Client = require('ssh2').Client;
const NeoScp = require('neo-scp');

const conn = new Client();

conn.connect({
   host: '192.168.0.2',
   port: 22,
   username: 'root',
   password: 'password'
});

const localFile = 'local/file.txt';
const remoteFile = 'remote/file.txt';

conn.on('ready', () => {
   const Scp = new NeoScp(conn);

   Scp.putFile(localFile, remoteFile, (err, res) => {
      if (err) throw err;

      if (res.localSize === res.remoteSize)
         console.log(`Upload successfully (${res.duration}ms)`);
      else
         console.log('Damaged remote file');

      conn.end();
   });
});

Methods

.putFile()

Sends a file to remote host.
You must pass the localFile path, the remoteFile destination path and a callback function.
The callback returns as result an object with following data:

{
   duration: Number, // transfer duration in ms
   localSize: Number, // size of local file in bytes
   remoteSize: Number // size of remote file in bytes
}

.getFileSize()

Gets the remote file size.
You must pass the remoteFile destination path and a callback function.
The callback returns as result the size in bytes.

.getFile()

Gets a file from remote host. You must pass the remoteFile path, the localFile destination path and a callback function.

Debug

NeoScp class emits the debug event with some debug informatione. The following code shows how to use it.

Scp.on('debug', data => {
   console.log(data);
});

Keywords

FAQs

Package last updated on 22 Sep 2021

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc