node-capmonster
TypeScript icon, indicating that this package has built-in type declarations

0.4.3 • Public • Published

Capmonster.cloud for NodeJS

GitHub release (release name instead of tag name) License npm bundle size GitHub Repo stars GitHub package.json dependency version (prod) npm

At least 2x cheaper, up to 30x faster than manual recognition services.

If you have any problem with usage, read the documentation or create an issue

Installation

with yarn:

yarn add node-capmonster

with npm:

npm node-capmonster

with pnpm:

pnpm add node-capmonster

Supported captcha types

  • FunCaptcha
  • GeeTest
  • HCaptcha
  • Image to Text
  • ReCAPTCHA v2 / v2 Enterprise / v3
  • Turnstile

Usage examples

Recaptcha V2

import { RecaptchaV2Task } from "node-capmonster"

const client = new RecaptchaV2Task("<api_key>")
const task = client.task({
    websiteKey: "<website_key>",
    websiteURL: "<url>",
})
const taskId = await client.createWithTask(task)
const result = await client.joinTaskResult(taskId)

FuncaptchaTask

import { FuncaptchaTask } from "node-capmonster"

const client = new FuncaptchaTask("<api_key>")
const task = client.task({
    websitePublicKey: "<website_pubkey>",
    websiteURL: "<url>",
})
const taskId = await client.createWithTask(task)
const result = await client.joinTaskResult(taskId)

More examples can be found at documentation.

Dependents (3)

Package Sidebar

Install

npm i node-capmonster

Weekly Downloads

915

Version

0.4.3

License

MIT

Unpacked Size

55.4 kB

Total Files

42

Last publish

Collaborators

  • alperensert