šŸš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more →
Socket
Sign inDemoInstall
Socket

adobe-ime-keyboard

Package Overview
Dependencies
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install
Package was removed
Sorry, it seems this package was removed from the registry

adobe-ime-keyboard

A library use to enter input in any text field using IME keyboard

1.0.8
unpublished
latest
npm
Version published
Maintainers
1
Created
Source

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

  • Japanese All (all the Japanese keyboards)
  • Korean (2-Set Korean and 3-Set Korean)
  • Chinese Simplified
  • Chinese Traditional
  • English ABC

Keyboard Select Options Available

  • Japanese Hiragana
  • Japanese Katakana
  • Japanese FullWidthRomaji
  • Japanese HalfWidthKatakana
  • Japanese Romaji
  • Korean 2SetKorean
  • Korean 3SetKorean
  • Chinese Simplified
  • Chinese Traditional
  • English ABC

Keyboard Input Options Available

  • A-Z
  • 0-9
  • Special Characters([];',./?:`)
  • ' ' Detect spaces automatically in between input
  • Direction Input - up,down,left,right
  • esc
  • enter/return
  • space

Keywords

ime

FAQs

Package last updated on 12 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