혀엉/야옹 Transpiler
raw JSON → 1.0.5 verified Fri May 01 auth: no javascript
A Node.js transpiler that converts between the 혀엉 and 야옹 esoteric languages created by Korean developers. The package provides two functions, toYaong() and toHyeong(), for bidirectional conversion. Version 1.0.5 is stable with no recent updates. It is a niche novelty package with no alternatives, offering TypeScript type definitions.
Common errors
error Cannot find module 'hyeongnya' ↓
cause Package not installed or not imported correctly.
fix
Run 'npm install hyeongnya' and ensure import path is correct.
error TypeError: hyeongnya.toYaong is not a function ↓
cause Using default import instead of named import.
fix
Use 'import { toYaong } from 'hyeongnya'' instead of 'import hyeongnya from 'hyeongnya''.
Warnings
gotcha The package is a novelty esoteric language transpiler; not intended for production use. ↓
fix Do not use in serious applications.
Install
npm install hyeongnya yarn add hyeongnya pnpm add hyeongnya Imports
- toYaong wrong
const toYaong = require('hyeongnya').toYaong;correctimport { toYaong } from 'hyeongnya'; - toHyeong wrong
import toHyeong from 'hyeongnya';correctimport { toHyeong } from 'hyeongnya'; - default export wrong
import hyeongnya from 'hyeongnya';correctimport * as hyeongnya from 'hyeongnya';
Quickstart
import { toYaong, toHyeong } from 'hyeongnya';
const hyeong = '혀어어어어어어어엉........ 핫. 혀엉..... 흑... 하앗... 흐윽... 형. 하앙. 혀엉.... 하앙... 흐윽... 항. 항. 형... 하앙. 흐으윽... 형... 흡... 혀엉.. 하아아앗. 혀엉.. 흡... 흐읍... 형.. 하앗. 하아앙... 형... 하앙... 흐윽... 혀어어엉.. 하앙. 항. 형... 하앙. 혀엉.... 하앙. 흑... 항. 형... 흡 하앗. 혀엉..... 흑. 흣';
const yaong = toYaong(hyeong);
console.log('Yaong:', yaong);