Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

transliteration.crh

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

transliteration.crh

Transliteration tool for Crimean Tatar language (Latin and Cyrillic alphabets)

  • 0.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

crh.transliteration

NPM version Bower Build Status Coverage Status

JavaScript library and tool for transliteration cyrillic Crimean Tatar words to latin and back. Based on transliterator developed by Alexander Goryainov, 2006-2009.

Library can be used in browser and on node.js platform. Browser version can be found in the dist directory.

Browse the demos on https://prosvita.github.io/crh.transliteration/

Install in Node.js

npm install transliteration.crh --save
var transliteration=require('transliteration.crh');
transliteration.crh.fromCyrillic('Мерхаба!'); // Merhaba!
transliteration.crh.toCyrillic('Merhaba!'); // Мерхаба!

Use in browser

This module should support all major browsers including IE 7-8.

bower

# Install bower if not already installed
# npm install bower -g
bower install transliteration.crh
<html>
<head>
  <script src="bower_components/transliteration.crh/dist/transliteration.crh.min.js"></script>
</head>
<body>
  <script>
    console.log(transliteration.crh.fromCyrillic('Мерхаба!')); // Merhaba!
    console.log(transliteration.crh.toCyrillic('Merhaba!')); // Мерхаба!
  </script>
</body>
</html>

Vanilla

<script src="https://prosvita.github.io/crh.transliteration/dist/transliteration.crh.min.js"></script>

Install command line tool globally

npm install transliteration.crh -g
crh --help

  Usage: crh <options> <sourceFile> [targetFile]

  Options:

    -h, --help           output usage information
    -V, --version        output the version number
    -c, --to-cyrillic    Convert to Cyrillic from Latin
    -l, --from-cyrillic  Convert to Latin from Cyrillic

Keywords

FAQs

Package last updated on 02 Mar 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc