Skip to content

Instantly share code, notes, and snippets.

@suhye0n
Last active August 3, 2023 01:32
Show Gist options
  • Save suhye0n/8e1fdcfd11be34ac653c9492b8f41b85 to your computer and use it in GitHub Desktop.
Save suhye0n/8e1fdcfd11be34ac653c9492b8f41b85 to your computer and use it in GitHub Desktop.
axios 한글 깨짐 해결 하는 모듈
const iconv = require('iconv-lite');
const htmlContent = response.data;
let htmlCMD = iconv.decode(htmlContent,"EUC-KR").toString();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment