Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
ngx-virtual-keyboard
Advanced tools
# npm
npm i --save ngx-virtual-keyboard
import { NgxVirtualKeyboardModule } from 'ngx-virtual-keyboard';
@NgModule({
...
imports: [
...
NgxVirtualKeyboardModule,
],
...
})
export class AppModule { }
import { Component } from '@angular/core';
@Component({
...
})
export class NgxVirtualKeyboardComponent implements OnInit {
private layout: any = 'alphanumeric';
// You can create your own layout
// private layout: string = [
// ['1', '2', '0', 'Backspace'],
// ['3', '4', '6', 'Enter'],
// ['a', 'b', 'c']
// ]'
constructor() { }
ngOnInit() {}
}
<input type="text" value=""
[ngx-virtual-keyboard]="true"
[ngx-virtual-keyboard-layout]="layout"
[ngx-virtual-keyboard-disabled]="false"
/>
Attribute | Description |
---|---|
[ngx-virtual-keyboard] | Required to initialize Virtual Keyboard to specified input. Can take boolean true or false to activate |
[ngx-virtual-keyboard-layout] | Used layout on keyboard, following keyboards are defaults that you can use alphanumeric, azerty, extended, numeric, phone |
[ngx-virtual-keyboard-disabled] | Disable keyboard keys if true |
https://vtllr.github.io/ngx-virtual-keyboard/
ngx-virtual-keyboard is Open Source, If you are interested in helping, please read the following:
When in doubt, keep your pull requests small. To give a PR the best chance of getting accepted, do not bundle more than one "feature" or bug fix in one PR. Doing so makes it very hard to accept it if one of the fixes has issues.
It's always best to create two smaller PRs than one big one.
Follow .editconfig
FAQs
Virtual keyboard for ngx application
The npm package ngx-virtual-keyboard receives a total of 67 weekly downloads. As such, ngx-virtual-keyboard popularity was classified as not popular.
We found that ngx-virtual-keyboard demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.