# recaptcha-blackgeeks

> This is just very simple Angular 5 component that implements Image-Text Recaptcha.

Latest version **1.2.2** (published 2018-07-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install recaptcha-blackgeeks
pnpm add recaptcha-blackgeeks
yarn add recaptcha-blackgeeks
bun add recaptcha-blackgeeks
```

## Health

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

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.2 |
| Published | 2018-07-18 |
| First published | 2018-05-03 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 79.5 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | blackgeek |
| Keywords | recaptcha, blackgeeks, image recaptcha, text recaptcha, simple recaptcha |

## Links

- npm: https://www.npmjs.com/package/recaptcha-blackgeeks
- npm.io page: https://npm.io/package/recaptcha-blackgeeks

## Dependencies (1)

- [tslib](https://npm.io/package/tslib.md) ^1.7.1

## Alternatives

- [exif-parser](https://npm.io/package/exif-parser.md) — 3.8M weekly downloads
- [vite-plugin-compression](https://npm.io/package/vite-plugin-compression.md) — 569.5K weekly downloads
- [pica](https://npm.io/package/pica.md) — 442.4K weekly downloads
- [@reportportal/client-javascript](https://npm.io/package/@reportportal/client-javascript.md) — 408.8K weekly downloads
- [@tldraw/state](https://npm.io/package/@tldraw/state.md) — 316.0K weekly downloads

## Recent versions

- 1.2.2 (latest) — 2018-07-18
- 1.2.1 — 2018-07-17
- 1.1.19 — 2018-07-09
- 1.1.18 — 2018-07-09
- 1.1.17 — 2018-06-05
- 1.1.16 — 2018-05-29
- 1.1.15 — 2018-05-29
- 1.1.14 — 2018-05-17
- 1.1.13 — 2018-05-09
- 1.1.12 — 2018-05-09
- 1.1.11 — 2018-05-09
- 1.1.10 — 2018-05-09
- 1.1.9 — 2018-05-09
- 1.1.8 — 2018-05-09
- 1.1.7 — 2018-05-07
- … 17 more at https://npm.io/package/recaptcha-blackgeeks/versions

## README

# Recaptcha Blackgeeks

This is just very simple Angular 5 component that implements Image-Text Recaptcha.

### HTML View
![Image of BlackGeeks-Recaptcha]
(https://i.imgur.com/o4clLc6.png)

Installation
--------------------------------------

Install it from npm:

```bash
npm install recaptcha-blackgeeks --save
```


## Usage

### Module

```typescript
...
import { BlackgeeksRecaptchaModule } from 'recaptcha-blackgeeks';
...
```

```typescript
 ...
@NgModule({
  imports: [...,BlackgeeksRecaptchaModule]
  })
  ...
```

### View

Use in template like below

```html
 <blackgeeks-recaptcha></blackgeeks-recaptcha>
```


## Methods

To access the methods, use [@ViewChild](https://angular.io/docs/ts/latest/api/core/index/ViewChild-decorator.html).

### Import
```typescript
import { ViewChild } from '@angular/core';
import { RecaptchaComponent } from 'recaptcha-blackgeeks';

export class RegisterComponent {
  @ViewChild(RecaptchaComponent) captcha: RecaptchaComponent;
}
```


### Usage
You can request a new captcha to be displayed:
```typescript
this.captcha.reset();
```

The previous response can be retrieved:
```typescript
let status = this.captcha.getResponse();
```

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