-
-
Notifications
You must be signed in to change notification settings - Fork 683
/
Copy pathupload-multiple-files.js
48 lines (43 loc) · 1.4 KB
/
upload-multiple-files.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
import http from 'node:http';
import util from 'node:util';
import os from 'node:os';
import formidable from '../src/index.js';
const server = http.createServer((req, res) => {
if (req.url === '/') {
res.writeHead(200, { 'Content-Type': 'text/html' });
res.end(`
<form action="/upload" enctype="multipart/form-data" method="post">
<input type="text" name="title"><br>
<input type="file" name="someCoolFiles" multiple><br>
<button>Upload</button>
</form>
`);
} else if (req.url === '/upload') {
const form = formidable({ uploadDir: os.tmpdir() });
const files = [];
const fields = [];
form
.on('field', (fieldName, value) => {
console.log(fieldName, value);
fields.push({ fieldName, value });
})
.on('file', (fieldName, file) => {
console.log(fieldName, file);
files.push({ fieldName, file });
})
.on('end', () => {
console.log('-> upload done');
res.writeHead(200, { 'Content-Type': 'text/plain' });
res.write(`received fields:\n\n${util.inspect(fields)}`);
res.write('\n\n');
res.end(`received files:\n\n${util.inspect(files)}`);
});
form.parse(req);
} else {
res.writeHead(404, { 'Content-Type': 'text/plain' });
res.end('404');
}
});
server.listen(3000, () => {
console.log('Server listening on http://localhost:3000 ...');
});