G11N IME Keyboard Library
Sample
The library is currently supported on MAC os. Options availble in the library are install IME Keyboard, Select IME Keyboard, Type in slected language using English Keyboard. The following snippet shows a valid adobe-ime-keyboard
example:
const {ime_keyboard} = require("adobe-ime-keyboard");
(async () => {
const imeobj = new ime_keyboard();
await imeobj.install_IME_keyboard("Japanese All")
await imeobj.select_IME_keyboard("Japanese Hiragana");
await imeobj.typeInput("abc d/';?");
await imeobj.typeInput("return");
await imeobj.typeInput("up");
await imeobj.typeInput("space");
})();
Keyboard Install Options Available
Keyboard Select Options Available
Keyboard Input Options Available