Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@slider-captcha/react
Advanced tools
Generate a puzzle slider captcha and display with React component.
React frontend:
npm i @slider-captcha/react
Backend:
npm i @slider-captcha/core
React:
import SliderCaptcha from '@slider-captcha/react';
function verifiedCallback(token) {
console.log('Captcha token: ' + token);
}
function App() {
return (
<SliderCaptcha
create="https://example.com/captcha/create"
verify="https://example.com/captcha/verify"
callback={verifiedCallback}
/>
);
}
Express:
var sliderCaptcha = require('@slider-captcha/core');
app.get('/captcha/create', function (req, res) {
sliderCaptcha.create()
.then(function ({data, solution}) {
req.session.captcha = solution;
req.session.save();
res.status(200).send(data);
});
});
app.post('/captcha/verify', function (req, res) {
sliderCaptcha.verify(req.session.captcha, req.body)
.then(function (verification) {
if (verification.result === 'success') {
req.session.token = verification.token;
req.session.save();
}
res.status(200).send(verification);
});
});
Name | Type | Default | Description |
---|---|---|---|
callback | func | (token) => console.log(token) | Called with token on successful verification |
create | string or func | captcha/create | Either the URL to fetch data from or a function () returning a promise which resolves with { background, slider } as PNG buffers |
verify | string or func | captcha/verify | Either the URL to fetch data from or a function (response, trail) returning a promise which resolves with { result, token } |
text | { anchor: string, challenge: string } | { anchor: 'I am human', challenge: 'Slide to finish the puzzle' } | Text used for captcha |
variant | string | light | Use 'light' for light theme, 'dark' for dark theme |
Light:
Dark:
sliderCaptcha.create({option: value})
Name | Type | Default | Description |
---|---|---|---|
image | buffer | randomly generated pattern | Background image used for captcha - resized to 250x150 |
fill | string | #000 | Color used in overlay of puzzle piece on background |
stroke | string | #fff | Color for outline of puzzle piece |
strokeWidth | string | 0.4 | Puzzle piece outline width |
opacity | string | 0.5 | Opacity of puzzle piece overlay on background |
distort | bool | false | Apply distortion to the puzzle piece |
rotate | bool | false | Apply a random rotation to the puzzle piece |
With rotation and distortion:
sliderCaptcha.verify(captcha, {response, trail: {x, y}}, {option: value})
Name | Type | Default | Description |
---|---|---|---|
tolerance | number | 7 | Allowed deviation from true captcha value |
FAQs
User-friendly puzzle slider captcha for React and Express
The npm package @slider-captcha/react receives a total of 0 weekly downloads. As such, @slider-captcha/react popularity was classified as not popular.
We found that @slider-captcha/react 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.