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

reactjs-captcha

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

reactjs-captcha - npm Package Compare versions

Comparing version 1.3.0 to 1.3.1

0

index.js
module.exports.Captcha = require('./dist/reactjs-captcha');
module.exports.captchaSettings = require('./dist/captcha-settings');

2

package.json
{
"name": "reactjs-captcha",
"version": "1.3.0",
"version": "1.3.1",
"description": "BotDetect Captcha React Component (JavaScript: React 0.13.x/0.14.x/15/16+)",

@@ -5,0 +5,0 @@ "scripts": {

@@ -5,3 +5,3 @@ ## BotDetect CAPTCHA React Component: Simple API integration for React 13/14/15/16+

The guide covers the integration with the following backends:
- ASP.NET (Core): web API with MVC6
- ASP.NET (Core): web API with MVC Core
- ASP.NET (Legacy): Web-API2, MVC1-5, Generic Handler

@@ -11,3 +11,3 @@ - Java: Servlet, Spring, Struts

To give you a hint how React Captcha Component works we pasted a few, not necessary up-to-date (and mostly frontend related), excerpts from it bellow.
To give you a hint how React Captcha Component works we pasted bellow a few, not necessary up-to-date (and mostly frontend related), excerpts from the Integration Guide.

@@ -154,3 +154,3 @@ ### Quick guide:

SimpleCaptcha yourFirstCaptcha = new SimpleCaptcha();
bool isHuman = yourFirstCaptcha.Validate(captchaCode, captchaId);
bool isHuman = yourFirstCaptcha.Validate(userEnteredCaptchaCode, captchaId);
```

@@ -160,3 +160,3 @@ ```vbnet

Dim yourFirstCaptcha As SimpleCaptcha = New SimpleCaptcha()
Dim isHuman As Boolean = yourFirstCaptcha.Validate(captchaCode, captchaId)
Dim isHuman As Boolean = yourFirstCaptcha.Validate(userEnteredCaptchaCode, captchaId)
```

@@ -167,3 +167,3 @@

SimpleCaptcha yourFirstCaptcha = SimpleCaptcha.load(request);
boolean isHuman = yourFirstCaptcha.validate(captchaCode, captchaId);
boolean isHuman = yourFirstCaptcha.validate(userEnteredCaptchaCode, captchaId);
```

@@ -174,3 +174,3 @@

$yourFirstCaptcha = new SimpleCaptcha();
$isHuman = $yourFirstCaptcha->Validate($captchaCode, $captchaId);
$isHuman = $yourFirstCaptcha->Validate($userEnteredCaptchaCode, $captchaId);
```

@@ -190,5 +190,5 @@

The current version of the React Captcha Component requires one of the following BotDetect CAPTCHA backends:
- [ASP.NET v4.4.1+](https://captcha.com/asp.net-captcha.html)
- [Java v4.0.Beta3.6+](https://captcha.com/java-captcha.html)
- [PHP v4.2.4+](https://captcha.com/php-captcha.html)
- [ASP.NET v4.4.2+](https://captcha.com/asp.net-captcha.html)
- [Java v4.0.Beta3.7+](https://captcha.com/java-captcha.html)
- [PHP v4.2.5+](https://captcha.com/php-captcha.html)

@@ -195,0 +195,0 @@ ### Technical Support:

@@ -0,0 +0,0 @@ module.exports.spread = function(initArr, addArr) {

@@ -0,0 +0,0 @@ var React = require('react');

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