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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@small-tech/portable-rsync-with-ssh-for-windows

v1.0.0

Published

A portable distribution of rsync with SSH for Windows. Uses the binaries from cygwin. Runs without cygwin installed.

Downloads

9

Readme

Portable Rsync With SSH For Windows

Based on github: fdcastel/cygrsync, a portable distribution of rsync with SSH for Windows. Uses the binaries from cygwin. Runs without cygwin installed.

Installation

npm install portable-rsync-with-ssh-for-windows

Usage

When run from the bin/ directory, the rsync and ssh commands believe that they are running from /bin/ and that the root is their parent folder.

To access Windows paths, you must specify them in cygwin format without the /cygdrive path prefix (as configured in etc/fstab). E.g., /c/my-folder points to C:\my-folder.

The exception is the home folder since etc/nsswitch.conf tells them to use your Windows home as the home directory.

By default, the command will try to use the keys defined in your "${env:home}\.ssh" (using your Windows home). The keys in here must be in Linux format (with LF line endings), not Windows format (with CRLF line endings).

The ssh binary that comes with this distribution cannot read keys with Windows line endings and will throw an invalid format error while trying to load the key. The OpenSSH version that comes preinstalled on Windows 10, on the other hand, can read keys with Linux line endings properly. So as long as your keys are written out with Linux line endings (e.g., generated from Windows Subsystem for Linux, etc.), then they will work under both Windows and this emulated cygwin rsync.

Note: Node.js always writes out files with LF line endings, even on Windows. So if you're generating your keys from Node.js, you should be fine with the default behaviour.

With Nexe

Include node_modules/@small-tech/portable-rsync-with-ssh-for-windows in your resources.

Reproducing

This was created by following the instructions on github: fdcastel/cygrsync to create an up-to-date distribution of rsync and SSH from cygwin.

The same set of libraries (some of which were newer versions) were copied from the resulting files.

Current versions

The current build has the following versions of the commands:

Rsync

Version 3.2.0 dev (protocol version 31)

SSH

  • OpenSSH Version 8.3p1
  • OpenSSL Version 1.1.1f (31 March, 2020)

(In our testing, this is compatible with what is currently installed on our Linux servers: rsync 3.1.3 protocol version 31 and OpenSSH 8.2p1, OpenSSL 1.1.1f 31 March, 2020.)