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

@eaven-x/ngx-captcha

v0.5.2

Published

Here's a copy from @binssoft/ngx-captcha. Change: 1. Resolve build issue in Angular 8+ 2. Remove "playCaptcha" function

Downloads

2

Readme

Here's a copy from @binssoft/ngx-captcha. Change:

  1. Resolve build issue in Angular 8+
  2. Remove "playCaptcha" function

@binssoft/ngx-captcha

A plugins to build your own captcha for your angular application. This plugin will help you to add CAPTCHA in your application form where you want to prevent the access for a BOT.

Build Status Support Support Support Support Support License

Please support this project by simply putting a Github star. Share this library with friends on Twitter and everywhere else you can.

Table of contents:

Getting started

Installation

npm install @eaven-x/ngx-captcha --save

Implementation

import "NgxCaptchaModule" in your application module. For example: app.module.ts

import {NgxCaptchaModule} from  'ngx-pager';
@NgModule({
    imports:[
	    NgxCaptchaModule
	    ...
    ]
})
export  class  AppModule { }

add configration in your component. For example : app.component.ts

import {NgxCaptchaService} from  '@eaven-x/ngx-captcha'

export  class  AppComponent  implements  OnInit {
captchaStatus:any = null;
captchaConfig:any = {
   length:6,
   cssClass:'custom',
   back: {
     stroke:"#2F9688",
     solid:"#f2efd2"
   } ,
   font:{
    color:"#000000",
    size:"35px"
   }
 };

 constructor(private captchaService:NgxCaptchaService){}
 ngOnInit() {
      this.captchaService.captchStatus.subscribe((status)=>{
        this.captchaStatus= status;
        if (status == false) {
          alert("Opps!\nCaptcha mismatch");
        } else  if (status == true) {
          alert("Success!\nYou are right");
        }
      });
 }
}

			

Add ngx-captcha html tag in your component html. For example : app.component.html

<ngx-captcha  [config]="captchaConfig"></ngx-captcha>
  • [config] : to set the pagination configuration

Settings Option

| |Description |Default Value
|----------------|-------------------------------|----------------------------- |type| 1 or 2 (EX: 1= alpha numaric characters to type, 2= solve a smiple calculation) | 1
|length| length of characters you want to show | 6 |cssClass| custom class you want to add for your own theme | |font| set the text font style | |font.size| set the size of display text | 40px |font.family| set the font family of display text| Arial
|back| set the background of the captcha box |
|back.stroke| if you want to add the strock in the background, add the color code |
| back.solid | if you want to add a solid color in your captcha body, add the color code | #f2efd2

Demo

Click Here for the demo

Creator

Tonmoy Nandy

License

The MIT License (MIT)