# node-capmonster

Capmonster.cloud module for Node.js — at least 2x cheaper, up to 30x faster than manual recognition services.


# Supported captcha types


# Quick example

import { RecaptchaV2Task } from "node-capmonster"

const client = new RecaptchaV2Task("<api_key>")

const task = client.task({
    websiteURL: "https://example.com",
    websiteKey: "<site_key>",
})

const taskId = await client.createWithTask(task)
const result = await client.joinTaskResult(taskId)

console.log(result.gRecaptchaResponse)