A
A
Artem Melnykov2019-02-05 07:44:52
JavaScript
Artem Melnykov, 2019-02-05 07:44:52

How to make a file server in Node.js?

There is a code:

const http = require("http");
 
http.createServer(function(request, response){
     
    response.setHeader("UserId", 12);
    response.setHeader("Content-Type", "text/html; charset=utf-8;");
    response.write("<input type="file">
<section>
<option>Не выбрано</option>
</section>");
    response.end();
}).listen(8000);

How to make the selected file in the input appear in the section list and when you click on it, it will be downloaded.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question