delivery
Version:
Bidirectional File Transfers For Node.js via Socket.IO
22 lines • 576 B
HTML
<html>
<head>
<title>Transfer Files With Socket.IO and Node.js</title>
<script src="/js/jquery-1.7.1.min.js"></script>
<script src="http://0.0.0.0:5001/socket.io/socket.io.js"></script>
<script src="/js/delivery.js"></script>
<script src="/js/app.js"></script>
<link rel="stylesheet" type="text/css" href="">
</head>
<body>
<div id="wrapper">
<h1>Select a File to Upload!</h1>
<form>
<input type="file">
<input type="submit" value="Upload File">
</form>
<div id="outcome"></div>
</div>
<img src="">
</body>
</html>