npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

thelastiq-recaptcha

v1.2.1

Published

This package helps you to generate and answer thelast-iq-test recaptcha questions

Readme

thelast-iq-test-Recaptcha-npm-package

A simple and framework to generate and verify the last IQ test Recaptcha data. This package currently supports TheLastIqTest Recaptcha V1.

Installation

npm i thelast-iq-test

yarn add thelast-iq-test

Usage

getReCaptchaQuestion(questionType: string, wordLength: number, apiKey: string): Promise<any> This function makes a GET request to retrieve a ReCaptcha question.

Parameters

  • questionType: string (required): A string representing the type of ReCaptcha question to retrieve.
  • wordLength number (required): A number representing the number of characters in the ReCaptcha question.
  • apiKey secret (required): A string representing the API key to use for the request.

Returns

answerReCaptchaQuestion(question: string, answer: string, apiKey: string): Promise<any> This function makes a POST request to answer a ReCaptcha question.

Parameters

  • question: string (required): A string representing the ReCaptcha question to answer.
  • answer string (required): A string representing the answer to the ReCaptcha question.
  • apiKey secret (required): A string representing the API key to use for the request.

Returns

  • A Promise that resolves to the data returned by the API.
const { getReCaptchaQuestion, answerReCaptchaQuestion } = require('thelast-iq-test-recaptcha');

const apiKey = "Your_API_Key";

async function getQuestion(apiKey) {
  const questionType = "CHARACTERS";
  const wordLength = 4;
  try {
    const result = await getReCaptchaQuestion(questionType, wordLength, apiKey);
    console.log(result);
  } catch (error) {
    console.error(error);
  }
}

async function answerQuestion(apiKey) {
  const question = "DCBAA";
  const answer = "43211";
  try {
    const result = await answerReCaptchaQuestion(question, answer, apiKey);
    console.log(result);
  } catch (error) {
    console.error(error);
  }
}

getQuestion(apiKey);
answerQuestion(apiKey);

Error Handling

Both the getReCaptchaQuestion and answerReCaptchaQuestion functions have error handling built in to handle common errors that may occur during the requests. In case of an error, the functions will return an error object or throw an error.

If the getReCaptchaQuestion function encounters an error, it will throw an error object with the error message. The error object will have the following properties:

  • message: A string representing the error message.
  • isAxiosError: A boolean indicating whether the error was caused by an Axios request.
  • response: An object containing the Axios response data, including the status code and error message.

If the answerReCaptchaQuestion function encounters an error, it will throw an error object with the error message. The error object will have the following properties:

  • message: A string representing the error message.
  • response: An object containing the Axios response data, including the status code and error message.

Example Response

The response from the ReCaptcha API will vary depending on the type of question and answer provided. In general, the response will contain a status code and a message.

Here is an example response from the getReCaptchaQuestion function:

{
  "status": 200,
  "instruction": 'IF A = 1, B = 2, C = 3, AND 1 = A, 2 = B, 3 = C. What is?',
  "question": 'ACCE'
}

Here is an example response from the answerReCaptchaQuestion function:

{
  "status": 200,
  "message": "GOD JOB"
}

Dependencies

The thelast-iq-test package has one dependency: axios. This package is used to make HTTP requests to the ReCaptcha API.

Contribution

If you would like to contribute to the thelast-iq-test package, you can do so by submitting a pull request on GitHub. The package repository can be found at https://github.com/suleigolden/thelast-iq-test-npm-package

Credits

The thelast-iq-test package was created by TheLastCodeBender and is maintained by TheLastIQGTest.

The package was inspired by the ReCaptcha API provided by Google, which is used by millions of websites to protect against spam and abuse.

We would like to thank the developers of the following open source packages, which were used in the creation of this package:

  • axios: A promise-based HTTP client for the browser and Node.js.
  • fetch: A browser API for making HTTP requests.
  • Jest: A JavaScript testing framework used for unit testing.

We also want to thank the many contributors who have helped improve the package through bug reports, feature requests, and code contributions. Your contributions are greatly appreciated!

If you have any questions or feedback about the package, please don't hesitate to contact us. We would be happy to hear from you.

License

Copyright (c) 2023 TheLastIQtest

MIT (http://www.opensource.org/licenses/mit-license.php)