0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Node.JSで簡易のファイルダウンロードサーバを構築する

Posted at

Ubuntu環境にnodejsをインストール後、以下のファイルを任意の場所に配置し、コマンド実行することで簡易サーバを起動できる。

server.js
const http = require('http');
const fs = require('fs');
const path = require('path');

const hostname = '127.0.0.1';
const port = 3000;

const server = http.createServer((req, res) => {

        const filePath = '.' + req.url;
        const fileName = path.basename(filePath);
        console.log('filePath=' + filePath);
        console.log('fileName=' + fileName);


        fs.readFile(filePath, (err, data) => {
                if (err) {
                        res.writeHead(404, {'Content-Type': 'text/plain'});
                        res.end('File not found...');
                } else {
                        res.writeHead(200, {
                                'Content-Disposition': `attachment; filename=${fileName}`,
                                'Content-Type': 'application/octet-stream'
                        });
                        console.log('File download started!');
                        res.end(data);
                }
        });
});

server.listen(port, () => {
        console.log('start listening on server...');
});

※ポート番号は任意の番号を設定できる。

コマンド実行

以下のコマンドでサーバを起動する。

node server.js

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?