Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@jnv/deathbycaptcha

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jnv/deathbycaptcha

deathbycaptcha API wrapper for Node.js

  • 1.3.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

deathbycaptcha API wrapper for Node.js

Post a captcha to the deathbycaptcha service, then polls until the captcha is decoded.

Installation

npm install deathbycaptcha4

Usage

Set up your credentials:

var deathbycaptcha = require('deathbycaptcha4');

deathbycaptcha.credentials({
    username: 'yourusername',
    password: 'xxxxxxxx'
});

Decode from a url, with a 10 seconds polling interval:

deathbycaptcha.decodeUrl(url, 10000, function(err, result) {
    console.log(result.text);
});

or decode from a file:

deathbycaptcha.decodeFile('modern-captcha.jpg', 10000, function(err, result) {
    console.log(result.text, result.id);
});

report invalid captcha:

deathbycaptcha.report(captchaId, function(err, result) {
    console.log(err);
});  

get your credit balance:

deathbycaptcha.credit(function(err, result) {
    console.log(result.balance);
});

get service status:

deathbycaptcha.status(function(err, result) {
    console.log(result.todays_accuracy);
});

FAQs

Package last updated on 14 Jul 2016

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc