1.0.1 • Published 9 years ago
netcopy v1.0.1
netcopy
Streaming file copy tool over multiplexed tcp stream. Node js
install
npm install netcopy -gserver
netcopy -l 8000 out_folder_nameclient
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');