Romanizes Hangul (Korean) characters. The library converts using the Revised Romanization of Korean romanization system.
npm install --save hangul-romanization
var hangulRomanization = require('hangul-romanization');
var romanization = hangulRomanization.convert('행복');
console.log(romanization); // 'haengbok'
npm run build