Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@trustcaptcha/trustcaptcha-angular

Package Overview
Dependencies
Maintainers
0
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@trustcaptcha/trustcaptcha-angular

Trustcaptcha library for angular

  • 1.6.1
  • latest
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Trustcaptcha Angular-Library

The Angular library helps you to integrate Trustcaptcha into your Angular frontend applications.

What is Trustcaptcha?

A captcha solution that protects you from bot attacks and puts a special focus on user experience and data protection.

You can find more information on your website: www.trustcaptcha.com.

How does the library work?

Detailed instructions and examples for using the library can be found in our documentation.

Short example

Here you can see a short code example of a possible integration. Please refer to our provided documentation for complete and up-to-date integration instructions.

  1. Installing the library

npm i @trustcaptcha/trustcaptcha-angular

  1. Add the TrustcaptchaModule to your app.module.ts
import {TrustcaptchaModule} from "@trustcaptcha/trustcaptcha-angular";

@NgModule({
  ...
  imports: [
    ...
    TrustcaptchaModule
  ],
  ...
})

export class AppModule { }
  1. Use the Trustcaptcha component in any form element
<form>

  <!-- your input fields -->

  <trustcaptcha-component
    sitekey="cc2e2d5e-d1ef-4a7f-a7bd-dec5b37df47a"
    (captchaSolved)="handleSuccess($event.detail)"
    (captchaFailed)="handleError($event.detail)"
  ></trustcaptcha-component>

  <!-- further input fields / submit button -->

</form>

Ideas and support

If you have any ideas, suggestions, or need support, please contact us.

Keywords

FAQs

Package last updated on 24 Oct 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc