fsup
v1.1.4
Published
Quickly send your file to other device.
Downloads
3
Readme
File Server
Quickly send your file to other device.
Installation
For CLI
npm i fsup -g
For CommonJS
npm i fsup
Usage
CLI
file-server file.png 8080
# or
fsup file.png 8080
CommonJS
const fsup = require("fsup");
fsup("test.txt", 8080, () => {
console.log("Listening!");
});
New
- Added logging feauture to CLI. CLI will log all ip of requests!