socket-file

file processing with help of socket.io

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
socket-file
6.1.04 months ago9 years agoMinified + gzip package size for socket-file in KB

Readme

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