hebrew-transliteration
v2.7.0
Published
a package for transliterating Hebrew
Downloads
1,091
Maintainers
Readme
hebrew-transliteration
A JavaScript package for transliterating Hebrew
install
npm
npm install hebrew-transliteration
from source
You will need to have node installed.
Download or clone this repository
cd hebrew-transliteration
npm install
npm run build
quickstart
You can use ESM:
import { transliterate } from "hebrew-transliteration";
transliterate("אֱלֹהִים");
// ʾĕlōhîm
Or CommonJS:
const heb = require("hebrew-transliteration");
const transliterate = heb.transliterate;
transliterate("אֱלֹהִים");
// ʾĕlōhîm
DOCS
View the docs online at https://charlesloder.github.io/hebrew-transliteration/getting-started/quick-start
Live
Use it live at https://hebrewtransliteration.app
Contributing
See contributing