npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@alekremi/ngx-recaptcha-v3

v1.0.0

Published

Library to integrate RecaptchaV3 with Angular

Downloads

8

Readme

Library to integrate Recaptcha v3 with Angular

npm version npm bundle size Depfu

Google reCaptcha v3 service implementation for Angular 12 and beyond.

Demo

StackBlitz live example.

Installation

npm install --save @alekremi/ngx-recaptcha-v3

Usage

Import NgxRecaptchaV3Module to Angular AppModule.

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { HttpClientModule, HttpClientXsrfModule } from '@angular/common/http';

import { NgxRecaptchaV3Module } from '@alekremi/ngx-recaptcha-v3';

import { AppComponent } from './app.component';

@NgModule({
  imports: [BrowserModule, HttpClientModule, HttpClientXsrfModule, NgxRecaptchaV3Module],
  declarations: [AppComponent],
  bootstrap: [AppComponent]
})
export class AppModule {}

Jnject NgxRecaptchaV3Service 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.

For example if your external LoginService looks like:

import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { User } from './user';

@Injectable()
export class LoginService {
  constructor(private httpClient: HttpClient) {}

  login(username: string, password: string): Observable<User> {
    return this.httpClient.post<User>('https://my-domain.com/api/login', { username, password });
  }
}

then NgxRecaptchaV3Service using:

import { Injectable } from '@angular/core';
import { HttpClient } from '@angular/common/http';
import { User } from './user';

import { NgxRecaptchaV3Service } from '@alekremi/ngx-recaptcha-v3';

@Injectable()
export class LoginService {
  constructor(private httpClient: HttpClient, private recaptchaV3Service: NgxRecaptchaV3Service) {}

  login(username: string, password: string): Observable<User> {
    return this.recaptchaV3Service
      .execute(RECAPTCHA_SITE_KEY, 'login')
      .pipe(mergeMap((token) => this.httpClient.post<User>('https://my-domain.com/api/login', { username, password, token })));
  }
}

Advanced usage

Additionaly you can provide NgxRecaptchaOptions:

| Option | Optional | Description | | ----------- | -------- | -------------------------------------------------------------- | | language | Yes | reCaptcha language (badge, errors and etc.) | | badgeHidden | Yes | provide if you want execute reCaptcha action with hidden badge |

Execute action with provided language:

reCaptcha supported languages: https://developers.google.com/recaptcha/docs/language

this.recaptchaV3Service.execute(RECAPTCHA_SITE_KEY, 'login', { language: 'de' });

Execute action with hidden badge:

this.recaptchaV3Service.execute(RECAPTCHA_SITE_KEY, 'login', { badgeHidden: true });

Note: You are allowed to hide the badge as long as you include the reCAPTCHA branding visibly in the user flow. Please include the following text:

This site is protected by reCAPTCHA and the Google
    <a href="https://policies.google.com/privacy">Privacy Policy</a> and
    <a href="https://policies.google.com/terms">Terms of Service</a> apply.

For more info see FAQ: https://developers.google.com/recaptcha/docs/faq#id-like-to-hide-the-recaptcha-badge.-what-is-allowed

Unload reCaptcha manually:

this.recaptchaV3Service.unload();

This method will remove recaptcha badge and scripts.