Package detail

ssh2-fs

adaltas2.7kBSD-3-Clause1.3.3

Transparent use of the fs module locally or over SSH

child process, fs, ssh, ssh2

readme

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.

changelog

Changelog

All notable changes to this project will be documented in this file. See standard-version for commit guidelines.

1.3.3 (2024-11-28)

1.3.2 (2024-11-27)

Bug Fixes

1.3.1 (2024-11-07)

1.3.0 (2024-11-07)

Features

1.2.2 (2024-10-24)

1.2.1 (2024-10-01)

1.2.0 (2024-10-01)

⚠ BREAKING CHANGES

  • convertion to typescript
  • remove default mkdir mode
  • conversion from commonjs to esm

Features

  • export hidden types (e5312a2)
  • finalize typescript migration (1ca74b7)
  • remove default mkdir mode (4e509d3)

Bug Fixes

1.1.3 (2024-07-19)

1.1.2 (2022-06-26)

1.1.1 (2022-04-14)

1.1.0 (2022-03-11)

Features

Bug Fixes

  • createWriteStream EISDIR error (f20a185)

Changelog

Version 1.0.6

  • package: latest dependencies

Version 1.0.5

  • package: raise node.js version
  • mkdir: align syscall error property on EEXIST
  • mkdir: align errno error property on EEXIST

Version 1.0.4

  • createReadStream: support EACCES

Version 1.0.3

  • createWriteStream: support ENOENT and EISDIR error with SSH

Version 1.0.2

  • ssh2@0.4.x use err.code; ssh2@0.3.x use err.type
  • src: remove occurance of callback

Version 1.0.1

  • package: remove old lock file

Version 1.0.0

  • api: convert to promise based api
  • package: latest dependencies
  • test: latest mocha, move config to package.json
  • package: coffee lint

Version 0.3.8

  • package: update adaltas url

Version 0.3.7

  • project: latest dependencies

Version 0.3.6

  • package: latest dependencies
  • package: ignore lock files

Version 0.3.5

  • package: start running tests in preversion

Version 0.3.4

  • createReadStream: align with native fs error

Version 0.3.3

  • readFile: align with native fs error when file does not exists
  • package: latest dependencies
  • travis: test against Node.js 9

Version 0.3.2

  • rmdir: new function

Version 0.3.1

  • package: run tests first before releasing
  • readFile: add syscall error property when target is a directory

Version 0.3.0

  • package: update to CoffeeScript 2

Version 0.2.5

  • test: fix constant test
  • package: npm release commands
  • readdir: traverse empty directory

Version 0.2.4

  • api: export fs.constants
  • src: support root uid and gid
  • src: fix wrong callback usage
  • src: catch close and readdir errors

Version 0.2.3

  • package: latest dependencies
  • package: move ownership

Version 0.2.2

  • readFile: return buffer unless encoding option

Version 0.2.0

  • test: simplify test wrapper
  • futures: new functionality
  • all: reorder code alphabetically