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