我在Heroku上部署了我的节点应用程序,想要启用Gzip压缩,任何提示?

时间:2018-04-08 10:54:06

标签: node.js gzip

我尝试连接以下代码: https://github.com/wimagguc/nodejs-static-http-with-gzip/blob/master/http-with-gzip.js Directories and Server.js File 我通过添加代码进行了更改:

path.exists(filePath, function(exists) {

    if (exists) {
        fs.readFile(filePath, function(error, content) {
            if (error) {
                response.writeHead(500);
                response.end();
            }
            else {
                var raw = fs.createReadStream(filePath);

                if (acceptEncoding.match(/\bdeflate\b/)) {
                    response.writeHead(200, { 'content-encoding': 'deflate' });
                    raw.pipe(zlib.createDeflate()).pipe(response);
                } else if (acceptEncoding.match(/\bgzip\b/)) {
                    response.writeHead(200, { 'content-encoding': 'gzip' });
                    raw.pipe(zlib.createGzip()).pipe(response);
                } else {
                    response.writeHead(200, {});
                    raw.pipe(response);
                }
            }
        });
    }
    else {
        response.writeHead(404);
        response.end();
    }

在server.js中:

app.get('/', (req, res) => {
//this place
    res.render('home.hbs', {
    pageTitle: 'Home Page',
    welcomeMess: 'Welcome to my Site'
})

}); 错误:path.exists不是一个函数。 但是我无法理解并打破了我的应用程序。

我希望得到一个gzip压缩文件。 我正在使用express来处理服务器

1 个答案:

答案 0 :(得分:0)

问题是您使用的代码依赖于旧节点版本。 path.exists替换为fs.exists。您的代码可能是这样的(只需很少的更改)

var fs = require("fs");
//...
path.exists(filePath, function(exists) {
    //...
}

请注意,此方法已弃用,如果您不介意外部依赖,则应查找使用fs.statfs.accesspath-exists包的替代方法。无论如何fs.access就像这样

fs.access(filePath, (err) => {
  if (err) {
    response.writeHead(404);
    response.end();
  }else{
    // ... rest of the method (here you know file exists and accessible)
  }      
});

差异是错误是回调中的第一个参数。