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 🙏

© 2025 – Pkg Stats / Ryan Hefner

net-scp

v0.0.0

Published

= Net::SCP

Downloads

61

Readme

= Net::SCP

Please note: this project is in maintenance mode. It is not under active development but pull requests are very much welcome. Just be sure to include tests! -- delano

  • Docs: http://net-ssh.github.com/net-scp
  • Issues: https://github.com/net-ssh/net-scp/issues
  • Codes: https://github.com/net-ssh/net-scp
  • Email: [email protected]

As of v1.0.5, all gem releases are signed. See INSTALL.

== DESCRIPTION:

Net::SCP is a pure-Ruby implementation of the SCP protocol. This operates over SSH (and requires the Net::SSH library), and allows files and directory trees to copied to and from a remote server.

== FEATURES/PROBLEMS:

  • Transfer files or entire directory trees to or from a remote host via SCP
  • Can preserve file attributes across transfers
  • Can download files in-memory, or direct-to-disk
  • Support for SCP URI's, and OpenURI

== SYNOPSIS:

In a nutshell:

require 'net/scp'

upload a file to a remote server

Net::SCP.upload!("remote.host.com", "username", "/local/path", "/remote/path", :ssh => { :password => "password" })

download a file from a remote server

Net::SCP.download!("remote.host.com", "username", "/remote/path", "/local/path", :ssh => { :password => "password" })

download a file to an in-memory buffer

data = Net::SCP::download!("remote.host.com", "username", "/remote/path")

use a persistent connection to transfer files

Net::SCP.start("remote.host.com", "username", :password => "password") do |scp| # upload a file to a remote server scp.upload! "/local/path", "/remote/path"

# upload from an in-memory buffer
scp.upload! StringIO.new("some data to upload"), "/remote/path"

# run multiple downloads in parallel
d1 = scp.download("/remote/path", "/local/path")
d2 = scp.download("/remote/path2", "/local/path2")
[d1, d2].each { |d| d.wait }

end

You can also use open-uri to grab data via scp:

require 'uri/open-scp' data = open("scp://user@host/path/to/file.txt").read

For more information, see Net::SCP.

== REQUIREMENTS:

  • Net::SSH 2

If you wish to run the tests, you'll also need:

  • Echoe (for Rakefile use)
  • Mocha (for tests)

== INSTALL:

  • gem install net-scp (might need sudo privileges)

However, in order to be sure the code you're installing hasn't been tampered with, it's recommended that you verify the signiture[http://docs.rubygems.org/read/chapter/21]. To do this, you need to add my public key as a trusted certificate (you only need to do this once):

# Add the public key as a trusted certificate
# (You only need to do this once)
$ curl -O https://raw.github.com/net-ssh/net-ssh/master/gem-public_cert.pem
$ gem cert --add gem-public_cert.pem

Then, when install the gem, do so with high security:

$ gem install net-scp -P HighSecurity

If you don't add the public key, you'll see an error like "Couldn't verify data signature". If you're still having trouble let me know and I'll give you a hand.

Or, you can do it the hard way (without Rubygems):

  • tar xzf net-scp-*.tgz
  • cd net-scp-*
  • ruby setup.rb config
  • ruby setup.rb install (might need sudo privileges)

== LICENSE:

(The MIT License)

Copyright (c) 2008 Jamis Buck [email protected]

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.