Launch Week Day 1: Socket for Jira Is Now Available.Learn More
Socket
Book a DemoSign in
Socket

@netacea/captchafeedback

Package Overview
Dependencies
Maintainers
2
Versions
277
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@netacea/captchafeedback

CAPTCHA feedback module to send CAPTCHA results back to Netacea.

latest
npmnpm
Version
5.7.0
Version published
Weekly downloads
427
-23.06%
Maintainers
2
Weekly downloads
 
Created
Source

Netacea CAPTCHA Feedback

Netacea Header

npm   TypeScript

@netacea/captchafeedback is a package designed to add Netacea CAPTCHA feedback functionality to your NodeJS based origin server.

Installation

NPM

npm i @netacea/captchafeedback --save

Yarn

yarn add @netacea/captchafeedback

Usage

import Netacea from '@netacea/captchafeedback'
const netacea = new Netacea({
  apiKey: 'your-api-key',
  secretKey: 'your-secret-key'
})

const { cookies } = await netacea.updateCaptcha({
  clientIp: 'client-ip', // Client's real IP address
  cookieHeader: 'cookie-header', // Incoming cookie header value
  eventId: 'captcha-page-event-id', // X-Netacea-Event-ID received when captcha was served
  result: true, // Result from captcha
  userAgent: 'client-user-agent' // Client's user-agent
})
// TODO: Add the returned cookies to the set-cookie header of the response, for example:
response.header('set-cookie', cookies)

FAQs

Package last updated on 20 Apr 2026

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