netcopy

1.0.1 • Public • Published

netcopy

Build Status

Streaming file copy tool over multiplexed tcp stream. Node js

install

npm install netcopy -g

server

netcopy -l 8000 out_folder_name

client

netcopy -c 127.0.0.1 8000 "./*"

library

client

const client = require('netcopy').client;
 
client('127.0.0.1', 8000, "./*.js");
 

server

const server = require('netcopy').server;
 
server(8000, 'dump_folder');
 

Readme

Keywords

Package Sidebar

Install

npm i netcopy

Weekly Downloads

1

Version

1.0.1

License

MIT

Last publish

Collaborators

  • m-onz