![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
node-capsolver
Advanced tools
Using npm:
npm install node-capsolver
Using yarn:
yarn add node-capsolver
const CapSolver = require('node-capsolver')
const fs = require('fs')
const solver = new CapSolver("CAI-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX", {
verbose: true, // Optional
verboseIdentifier: "[Image Solve]" // Optional & not required when verbose: true
})
solver.getBalance().then(data => {
if (data?.balance > 0) {
solver.solve({
type: "ImageToTextTask",
body: fs.readFileSync('captcha.png') // The library will automatically convert buffers into base64 strings for you
}).then((task) => {
console.log(task.solution.text)
})
} else {
console.log("Insufficient balance.")
}
})
const CapSolver = require('node-capsolver')
const axios = require("axios").default;
const { JSDOM } = require('jsdom');
(async () => {
let demoURL = "https://www.google.com/recaptcha/api2/demo";
let resp = await axios({
method: "GET",
url: demoURL,
})
const dom = new JSDOM(resp.data)
const siteKey = dom.window.document.querySelector('#recaptcha-demo').getAttribute('data-sitekey');
const handler = new CapSolver('CAI-XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX', {
verbose: true // Optional
})
let b = await handler.getBalance();
if (b.balance > 0) {
let CapResponse = await handler.solve({
type: 'ReCaptchaV2TaskProxyLess',
websiteURL: demoURL,
websiteKey: `${siteKey}`,
})
console.log(CapResponse)
} else {
console.log("Insufficient balance.")
}
})();
In general, the CapSolver.solve()
function is all you need. It combines createTask() and getTaskResult() into one, meaning you don't need to worry about anything else.
async CapSolver.solve(task)
async CapSolver.createTask(task)
async CapSolver.getTaskResult(taskId)
async CapSolver.feedbackTask(taskId, result)
async CapSolver.getBalance()
When using an IDE that supports JSDoc, you will get suggestions of properties the task supports. To get the best suggestions, specify the type
first.
For the general API, check the CapSolver.com documentation.
FAQs
## An API wrapper for CapSolver.com written in Node.js
The npm package node-capsolver receives a total of 173 weekly downloads. As such, node-capsolver popularity was classified as not popular.
We found that node-capsolver demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
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.