NodeJS 요청의 모듈 gzip 응답 본문을 어떻게 ungzip (압축 해제)합니까? 요청의 모듈 응답에서 gzip으로 압축 된 본문을 어떻게 압축 해제합니까? 웹에서 몇 가지 예제를 시도했지만 작동하지 않는 것 같습니다. request(url, function(err, response, body) { if(err) { handleError(err) } else { if(response.headers['content-encoding'] == 'gzip') { // How can I unzip the gzipped string body variable? // For instance, this url: // http://highsnobiety.com/2012/08/25/norse-projects-fall-..