to-utf-8
v1.3.0
Published
Detect input encoding and convert to utf-8 if needed
Readme
to-utf-8
Install with npm install to-utf-8 and optionally use the -g flag to install the
command line utility.
Usage
var utf8 = require('to-utf-8')
var fs = require('fs')
fs.createReadStream('weirdencoding.txt')
.pipe(utf8())
.pipe('utf8encoded.txt')You can also provide the encoding, if known:
var utf8 = require('to-utf-8')
var fs = require('fs')
fs.createReadStream('utf16-le-file.txt')
.pipe(utf8('utf16-le'))
.pipe('utf8encoded.txt')You can also pass an options object instead with the following keys:
confidenceMinimum confidence for the detected source encoding. If not reached assumeutf-8encodingSame as passing a string directly. Use the given encoding instead of detecting it.newlineUse input text until newline is reached to detect encoding (defaulttrue)detectSizeMaximum size from input to detect encoding (default65535)
CLI
This modules includes a to-utf-8 command line tool. It listens for a stream from
stdin and converts it to utf-8 to stdout like:
to-utf-8 < weirdencoding.txt > utf8encoded.txtYou can specify the source encoding with the --enc flag.
