socket-file
v7.0.0
Published
file processing with help of socket.io
Downloads
1,787
Readme
Socket-file
File processing with help of socket.io.
Install
npm i socket-file --save
How to use?
const socketFile = require('socket-file');
const http = require('http');
const express = require('express');
const io = require('socket.io');
const app = express();
const server = http.createServer(app);
const socket = io.listen(server);
server.listen(port, ip);
socketFile(socket, {
prefix: 'edward',
// string or function
root: '/',
// max file size for patch
size: '512000',
auth: (accept, reject) => (username, password) => {
accept();
},
});
License
MIT