socket-file

file processing with help of socket.io

Usage no npm install needed!

<script type="module">
  import socketFile from 'https://cdn.skypack.dev/socket-file';
</script>

README

Socket-file License NPM version Build Status

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',
    root: '/',      /* string or function       */
    size: '512000', /* max file size for patch  */
    auth: (accept, reject) => (username, password) => {
        accept();
    },
});

License

MIT