0.1.0 • Published 9 years ago

html-to-utf8 v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

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.