Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
ngx-captcha
Advanced tools
Google reCaptcha implementation for Angular 6 and beyond.
Features:
Live examples: https://enngage.github.io/ngx-captcha/
5.0.4
>= 6.0.0
npm install ngx-captcha
Import NgxCaptchaModule
to your module (i.e. AppModule
). You can configure global keys with forRoot
(optionally) or you can use siteKey
input parameter of captcha components.
Depending on whether you want to use reactive forms or template-driven forms you need to include the appropriate modules, too.
Add ReactiveFormsModule
to your imports in case you want to use reactive forms. If you prefer the the template-driven approach simple add the FormsModule
to your module.
Both can be imported from @angular/forms
. In the demo project you can check out the normal demo to see how to use reactive forms or the invisible demo to see what the template-driven approach looks like. With the template-driven approach you don't necessarily need to use a from element to wrap the component, you can instead use the [ngModelOptions]="{ standalone: true }"
.
However, using it with the standalone option is not recommended but can be used if needed.
import { NgModule } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';
import { NgxCaptchaModule } from 'ngx-captcha';
@NgModule({
imports: [
ReactiveFormsModule,
NgxCaptchaModule
})
export class AppModule { }
The configuration properties are a copy of the official ones that google provides. For explanation of what these properties do and how to use them, please refer to https://developers.google.com/recaptcha/docs/display and https://developers.google.com/recaptcha/docs/invisible.
your.component.ts
export class YourComponent implements OnInit {
protected aFormGroup: FormGroup;
constructor(private formBuilder: FormBuilder) {}
ngOnInit() {
this.aFormGroup = this.formBuilder.group({
recaptcha: ['', Validators.required]
});
}
}
your.template.html
<form [formGroup]="aFormGroup">
<ngx-recaptcha2 #captchaElem
[siteKey]="siteKey"
(reset)="handleReset()"
(expire)="handleExpire()"
(load)="handleLoad()"
(success)="handleSuccess($event)"
[useGlobalDomain]="false"
[size]="size"
[hl]="lang"
[theme]="theme"
[type]="type"
formControlName="recaptcha">
</ngx-recaptcha2>
</form>
This is the implementation of beta version of google reCaptcha v3 as per following documentation"https://developers.google.com/recaptcha/docs/v3".
First you need to inject the class in your component / service and then use Execute method with your action. Once you have the token, you need to verify it on your backend to get meaningful results. See official google documentation for more details.
import { ReCaptchaV3Service } from 'ngx-captcha';
constructor(
private reCaptchaV3Service: ReCaptchaV3Service
) { }
....
this.reCaptchaV3Service.execute(this.siteKey, 'homepage', (token) => {
console.log('This is your token: ', token);
}, {
useGlobalDomain: false
});
<form [formGroup]="aFormGroup">
<ngx-invisible-recaptcha #captchaElem
[siteKey]="siteKey"
(reset)="handleReset()"
(ready)="handleReady()"
(load)="handleLoad()"
(success)="handleSuccess($event)"
[useGlobalDomain]="false"
[type]="type"
[badge]="badge"
[ngModel]="recaptcha"
[ngModelOptions]="{ standalone: true }">
</ngx-invisible-recaptcha>
</form>
Under projects\ngx-captcha-lib
run
npm run publish-lib
Under root, generate demo app with
npm run build-demo-gh-pages
npx ngh --dir=dist-demo
FAQs
Dynamic captcha (Google reCaptcha) implementation for Angular
The npm package ngx-captcha receives a total of 19,606 weekly downloads. As such, ngx-captcha popularity was classified as popular.
We found that ngx-captcha 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.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.