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

ssh2-fs

Package Overview
Dependencies
Maintainers
0
Versions
48
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ssh2-fs

Transparent use of the `fs` module locally or over SSH

  • 1.3.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Node.js ssh2-fs

Build Status NPM NPM

The Node.js ssh2-fs package extends the ssh2 module to provide transparent usage of the Node.js fs API either locally or over SSH.

Installation

This is OSS and licensed under the MIT license.

npm install ssh2-fs

Type declaration

The TypeScript documentation is available in the Markdown and HTLM format using typedoc.

Usage

The API borrows from the node:fs.promises module with the additionnal first argument. The function run locally when "null" or it run over SSH when an ssh2 client connection. Otherwise the API is strictly the same with a few exception due to the SSH2 API:

  • The exists function which execute the call with 2 arguments: an error and the exists argument.
  • The functions createReadStream and createWriteStream return a promise with a stream argument.

Only the asynchronous functions are ported, we have no plan to support synchronous functions. Morevover, they are not supported by [ssh2].

Non (yet) implemented functions are "ftruncate", "truncate", "fchown", "lchown", "fchmod", "lchmod", "fstat", "realpath", "rmdir", "close", "open", "utimes", "fsync", "write", "read", "appendFile", "watchFile", "unwatchFile", "watch".

Examples

The example is using both the "ssh2-connect" and "ssh2-fs" modules.

import connect from "ssh2-connect";
import fs from "ssh2-fs";

const ssh = await connect({ host: "localhost" });
await fs.mkdir(ssh, "/tmp/a_dir");

Development

Tests are executed with mocha. To install it, simple run npm install, it will install mocha and its dependencies in your project "node_modules" directory.

To run the tests:

npm test

The test suite is run online with [GitHub actions][https://github.com/adaltas/node-ssh2-fs/actions] against Node.js, 0.10 and 0.11.

The tests run against the CoffeeScript source files.

To generate the JavaScript files:

make build

Release

Versions are incremented using semantic versioning. To create a new version and publish it to NPM, run:

npm run release
# Or (`git push` is only supported for the release script)
npm run release:<major|minor|patch>
git push --follow-tags origin master

The NPM publication is handled with the GitHub action.

Contributors

The project is sponsored by Adaltas based in Paris, France. Adaltas offers support and consulting on distributed systems, big data and open source.

Keywords

FAQs

Package last updated on 28 Nov 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

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