html-to-utf8
v0.1.0
Published
Convert html documents of arbitrary encoding to UTF-8
Downloads
49
Readme
html-to-utf8
A Node.js library for converting HTML documents of arbitrary encoding to UTF-8.
Installation
npm install html-to-utf8
Usage
var request = require('request');
var toUTF8 = require('html-to-utf8');
request({
url: 'http://www.rakuten.co.jp',
encoding: null // stop request from decoding response
}, function(err, resp, buffer) {
if (err) {
console.error(err.stack);
return;
}
var htmlInUTF8 = toUTF8(buffer, resp.headers['content-type']);
});
License
The code is available under MIT license.