# ngx-softkeyboard

> Onscreen soft keyboard for Angular7+.

Latest version **0.0.1** (published 2019-06-30) · 0 weekly downloads

## Install

```sh
npm install ngx-softkeyboard
pnpm add ngx-softkeyboard
yarn add ngx-softkeyboard
bun add ngx-softkeyboard
```

## Health

**Score 25/100 (F)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2019-06-30 |
| First published | 2019-06-25 |
| Weekly downloads | 0 |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 12 |
| Unpacked size | 349.5 KB |
| Known vulnerabilities | 0 (+18 in 3 direct dependencies) |
| Install scripts | no |
| Maintainers | neromaycry |

## Links

- npm: https://www.npmjs.com/package/ngx-softkeyboard
- npm.io page: https://npm.io/package/ngx-softkeyboard

## Dependencies (12)

- [rxjs](https://npm.io/package/rxjs.md) ~6.3.3
- [tslib](https://npm.io/package/tslib.md) ^1.9.0
- [core-js](https://npm.io/package/core-js.md) ^2.5.4
- [zone.js](https://npm.io/package/zone.js.md) ~0.8.26
- [@angular/core](https://npm.io/package/@angular/core.md) ~7.2.0
- [@angular/forms](https://npm.io/package/@angular/forms.md) ~7.2.0
- [@angular/common](https://npm.io/package/@angular/common.md) ~7.2.0
- [@angular/router](https://npm.io/package/@angular/router.md) ~7.2.0
- [@angular/compiler](https://npm.io/package/@angular/compiler.md) ~7.2.0
- [@angular/animations](https://npm.io/package/@angular/animations.md) ~7.2.0
- [@angular/platform-browser](https://npm.io/package/@angular/platform-browser.md) ~7.2.0
- [@angular/platform-browser-dynamic](https://npm.io/package/@angular/platform-browser-dynamic.md) ~7.2.0

## Recent versions

- 0.0.1 (latest) — 2019-06-30
- 0.0.0 — 2019-06-25

## README

# NgxSoftkeyboard

Onscreen soft keyboard for Angular7+.

##Getting Started
1.Install using npm: `npm i --save ngx-softkeyboard`
2.Add the module to your project, e.g. `app.module.ts`:
```
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { NgxSoftKeyboardModule } from 'ngx-soft-keyboard/ngx-soft-keyboard.module';

@NgModule({
  declarations: [AppComponent],
  imports: [BrowserModule, BrowserAnimationsModule, NgxSoftKeyboardModule],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}
```


## Development server

Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.

## Code scaffolding

Run `ng generate component component-name` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module`.

## Build

Run `ng build` to build the project. The build artifacts will be stored in the `dist/` directory. Use the `--prod` flag for a production build.

## Running unit tests

Run `ng test` to execute the unit tests via [Karma](https://karma-runner.github.io).

## Running end-to-end tests

Run `ng e2e` to execute the end-to-end tests via [Protractor](http://www.protractortest.org/).

## Further help

To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI README](https://github.com/angular/angular-cli/blob/master/README.md).

---
_Source: https://npm.io/package/ngx-softkeyboard · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
