netcopy
v1.0.1
Published
copy files over a multiplexed tcp stream
Downloads
4
Readme
netcopy
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');