A JavaScript package for transliterating Hebrew
npm install hebrew-transliteration
You will need to have node installed.
Download or clone this repository
cd hebrew-transliteration
npm install
npm run build
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
View the docs online at https://charlesloder.github.io/hebrew-transliteration/getting-started/quick-start
Use it live at https://hebrewtransliteration.app
See contributing