README
anticaptcha-image-nodejs
$ npm i --save anticaptcha-image-nodejs
Example:
anticaptcha
.getResult("YOUR_CLIENT_KEY_HERE", "IMAGE_BASE64_HERE")
.then((result) => {
console.log(result);
});
Anticaptcha image for nodeJS
<script type="module">
import anticaptchaImageNodejs from 'https://cdn.skypack.dev/anticaptcha-image-nodejs';
</script>
$ npm i --save anticaptcha-image-nodejs
anticaptcha
.getResult("YOUR_CLIENT_KEY_HERE", "IMAGE_BASE64_HERE")
.then((result) => {
console.log(result);
});