html-to-utf8

0.1.0 • Public • Published

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.

Readme

Keywords

Package Sidebar

Install

npm i html-to-utf8

Weekly Downloads

10

Version

0.1.0

License

MIT

Last publish

Collaborators

  • spect88