Skip to content

Instantly share code, notes, and snippets.

@raine
Created June 1, 2015 09:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raine/c83fe2742f92a9be8f56 to your computer and use it in GitHub Desktop.
Save raine/c83fe2742f92a9be8f56 to your computer and use it in GitHub Desktop.

reading a file with ISO-8859-1 encoding in node.js

npm install iconv-lite
var fs = require('fs');
var iconv = require('iconv-lite');
iconv.decode(fs.readFileSync('file.txt'), 'iso-8859-1');
@bessa3301
Copy link

❤️ ценить это

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment