
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
cyrillic-romanization
Advanced tools
Convert Cyrillic characters to Latin characters (transliteration)
Convert Cyrillic characters to Latin characters (transliteration).
Default transliteration works according to ISO 9:1995.
However, ISO 9 is rarely used because it has unusual diacritical letters. Thus:
Be aware that the presented romanization rules are unsuitable for transliteration of geographic names.
npm install cyrillic-romanization
import cyrillicToLatin from 'cyrillic-romanization';
// ISO 9 by default
cyrillicToLatin('Ћирилица је изведена из грчког унцијала');
// => Ćirilica ǰe izvedena iz grčkog unciǰala
// Convert Serbian Cyrillic alphabet to Gaj's Latin alphabet
cyrillicToLatin('Овај веб сајт користи колачиће', 'srp');
// => Ovaj veb sajt koristi kolačiće
// Convert Russian into GOST 7.79-2000 System B
cyrillicToLatin(
'Широкая электрификация южных губерний даст мощный толчок подъёму сельского хозяйства',
'rus',
);
// => Shirokaya elektrifikaciya yuzhnyx gubernij dast moshhnyj tolchok podʺyomu selʹskogo xozyajstva
iso9 — ISO 9, default (optional);alalc — ALA-LC romanization for Russian;bel — Belarusian language;bul — Bulgarian language;cnr — Montenegrin language;kaz — Kazakh language;mkd — Macedonian language;mon — Mongolian language;rus — Russian language;srp — Serbian language;ukr — Ukrainian language;uzb — Uzbek language.FAQs
Convert Cyrillic characters to Latin characters (transliteration)
We found that cyrillic-romanization demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.