Skip to content

Instantly share code, notes, and snippets.

View kingerking's full-sized avatar
🏠
Working from home

Kyle King kingerking

🏠
Working from home
View GitHub Profile
@companje
companje / socket.io-stream.js
Last active October 24, 2021 02:59
Upload using socket.io-stream
///////////////////////////
/// Server NodeJS
//////////////////////////
var express = require('express');
var app = express();
var http = require('http').Server(app);
var io = require('socket.io')(http);
var ss = require('socket.io-stream');
var path = require('path');