All Projects → by-pinja → ng-virtual-keyboard

by-pinja / ng-virtual-keyboard

Licence: MIT license
Virtual Keyboard for Angular applications

Programming Languages

typescript
32286 projects
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
SCSS
7915 projects
shell
77523 projects

Projects that are alternatives of or similar to ng-virtual-keyboard

kint
kinT keyboard controller (Kinesis controller replacement)
Stars: ✭ 191 (+664%)
Mutual labels:  keyboard
mechanical-keyboard
⌨️ Resources related to my mechanical keyboard build.
Stars: ✭ 14 (-44%)
Mutual labels:  keyboard
python-keylogger
Advanced Pure-Python Keylogger
Stars: ✭ 64 (+156%)
Mutual labels:  keyboard
prk firmware
A keyboard firmware platform in PicoRuby
Stars: ✭ 337 (+1248%)
Mutual labels:  keyboard
Juni
12 Keys Chorded keyboard layout
Stars: ✭ 51 (+104%)
Mutual labels:  keyboard
Lotus58
A 58 key split ergo linear keyboard derived from the Lily58 family
Stars: ✭ 142 (+468%)
Mutual labels:  keyboard
persian
Some utilities for Persian language in Go (Golang)
Stars: ✭ 65 (+160%)
Mutual labels:  keyboard
kalamine
Keyboard Layout Maker
Stars: ✭ 47 (+88%)
Mutual labels:  keyboard
Ayase
🥥 Control everything by keyboard. Built for hackers and the blind.
Stars: ✭ 53 (+112%)
Mutual labels:  keyboard
gotomation
No description or website provided.
Stars: ✭ 18 (-28%)
Mutual labels:  keyboard
xcloud-keyboard-mouse
Chrome extension for controlling Xbox Cloud Gaming (Project xCloud) using a keyboard and mouse
Stars: ✭ 78 (+212%)
Mutual labels:  keyboard
L5P-Keyboard-RGB
Cross platform software to control the lighting of the 4 zone keyboard included in the 2020 and 2021 lineup of the Lenovo Legion laptops. Works on Windows and Linux.
Stars: ✭ 79 (+216%)
Mutual labels:  keyboard
buildlogs
Repository to document my builds and projects.
Stars: ✭ 84 (+236%)
Mutual labels:  keyboard
ackermann-drive-teleop
ROS keyboard and joystick teleoperation scripts for robots with ackermann steering
Stars: ✭ 33 (+32%)
Mutual labels:  keyboard
keyboard recording trojan
一个可以记录键盘输入并发送到指定邮箱的简单木马。
Stars: ✭ 63 (+152%)
Mutual labels:  keyboard
mouseable
'Mouseable' is intended to replace a mouse or trackpad.
Stars: ✭ 418 (+1572%)
Mutual labels:  keyboard
vue-keyboard
🎹A real hand tapping keyboard
Stars: ✭ 51 (+104%)
Mutual labels:  keyboard
Arduino-Chunithm-Controller
使用 Arduino 制作的 Chunithm 控制器。
Stars: ✭ 29 (+16%)
Mutual labels:  keyboard
iterm2-macos-dynamic-profile
🍎Fix iterm2 macos keys
Stars: ✭ 69 (+176%)
Mutual labels:  keyboard
EmojiKeyBoard
自定义表情键盘(支持系统表情, 图片表情),仅供参考学习~
Stars: ✭ 36 (+44%)
Mutual labels:  keyboard

ng-virtual-keyboard

MIT licensed npm version npm Dependency Status devDependency Status

What is this?

Virtual Keyboard for Angular applications

See CHANGELOG.md

Install

Step 1: Install @protacon/ng-virtual-keyboard

$ npm install --save @protacon/ng-virtual-keyboard

Step 2: Import the module

Add NgVirtualKeyboardModule as an import in your app's root NgModule.

import { NgVirtualKeyboardModule }  from '@protacon/ng-virtual-keyboard';

@NgModule({
  ...
  imports: [
    ...
    NgVirtualKeyboardModule,
  ],
  ...
})
export class AppModule { }

Usage

Simple usage example

<input type="text" value=""
  ng-virtual-keyboard
  ng-virtual-keyboard-layout="alphanumeric"
  ng-virtual-keyboard-placeholder="Custom placeholder text"
  (ng-virtual-keyboard-close)="onClose()"
/>
Attribute Description
ng-virtual-keyboard Required to initialize Virtual Keyboard to specified input
ng-virtual-keyboard-layout Used layout on keyboard, following keyboards are defaults that you can use alphanumeric, alphanumericNordic, extended, extendedNordic, numeric, phone
ng-virtual-keyboard-placeholder Override placeholder text, if input has not any - or you want to override input placeholder value
ng-virtual-keyboard-close Listener for keyboard closing event

Demo

https://by-pinja.github.io/ng-virtual-keyboard/

Local development

For easier local development, Docker can be used for compiling and testing the keyboard. To run virtual keyboard from local docker environment, execute following:

docker-compose up

After this is ready, navigate to http://localhost:4200/

To avoid installing node etc. locally, execute.sh can be used to exceute command with current version of supported container.

Lint example:

bash execute.sh yarn lint

Basically this is just a shorthand for docker run -it --rm -w /app -v ${PWD}/:/app node:12-alpine3.14 "$@"

License

The MIT License (MIT)

Copyright (c) 2017 Protacon

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].