Node.js 搭建HTTP服务器,提供文件下载

Posted 项希盛

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node.js 搭建HTTP服务器,提供文件下载相关的知识,希望对你有一定的参考价值。

直接上代码,这是第一版,可以判断扩展名

 

var http = require(‘http‘);
var express = require(‘express‘);
var fs=require("fs");
var path=require("path");
var mime = require(‘mime‘);
var app = express();
var currDir = ‘F:\Users\djyk\74dj.mp3‘;
app.get(‘*‘, function (req, res, next) {
  var reqpath = decodeURI(req.path);
  console.log(reqpath);
  var filepath = path.join(currDir,reqpath);
  fs.lstat(filepath, function(err, stat) {
    if(err){
      if (err.code === ‘ENOENT‘) {
        res.writeHead(404);
        res.end("404 Not Found");
        return;
      }
      res.writeHead(500);
      res.end(JSON.stringify(err));
      return;
    }
    if(stat.isDirectory()) {
      res.writeHead(403);
      res.end("403 Forbidden");
      return;
    }
    if (path.extname(filepath) !== ‘.mp3‘) {
      res.writeHead(400);
      res.end("400 Bad Request");
      return;
    }
    var f = fs.createReadStream(filepath);
    const row = {};
    row[‘Content-Type‘] = mime.getType(reqpath);
    row[‘Content-Disposition‘] = ‘attachment; filename=‘ + encodeURI(path.basename(reqpath));
    res.writeHead(200, row);
    f.pipe(res);
  });
});
http.createServer(app).listen(50074);

 

以上是关于Node.js 搭建HTTP服务器,提供文件下载的主要内容,如果未能解决你的问题,请参考以下文章

node.js http模块2

详解express搭建http服务,通过路由和中间件获取静态文件和动态数据的实现原理

node.js服务器搭建

node.js搭建代理服务器请求数据

用node.js搭建服务器

node.js搭建https服务器