All Projects → monkeym4ster → captcha.js

monkeym4ster / captcha.js

Licence: other
Captcha in Node.js

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Projects that are alternatives of or similar to captcha.js

sdk-node
VULCAN UONET+ JavaScript SDK
Stars: ✭ 11 (-52.17%)
Mutual labels:  node-js
nodekit
[Moved to Codeberg] A Small Web server.
Stars: ✭ 68 (+195.65%)
Mutual labels:  node-js
Raid-Protect-Discord-Bot
A Discord Bot that allows you to protect your Discord server with captcha, anti profanity, anti nudity image, anti spam, account age required, logs...
Stars: ✭ 182 (+691.3%)
Mutual labels:  captcha
Reactirator
A desktop application to create and manage React.js applications easily.
Stars: ✭ 111 (+382.61%)
Mutual labels:  node-js
PruneBot
PruneBot is an easy to use multi-purpose bot and it has a free open source code to setup your own prune bot to your own server.
Stars: ✭ 13 (-43.48%)
Mutual labels:  node-js
xlsx-calc
javascript nodejs excel formula parser
Stars: ✭ 83 (+260.87%)
Mutual labels:  node-js
fn-rate
🌠 Rate the skins of Fortnite and see what skins are most appreciated!
Stars: ✭ 14 (-39.13%)
Mutual labels:  node-js
musicritic
Your personal music-specific Metacritic.
Stars: ✭ 45 (+95.65%)
Mutual labels:  node-js
ocr api server
使用ddddocr的最简api搭建项目,支持docker
Stars: ✭ 222 (+865.22%)
Mutual labels:  captcha
syncify
🤝 Shopify theme upload, download and watch development tool.
Stars: ✭ 50 (+117.39%)
Mutual labels:  node-js
titaniumifier
Get a Titanium™ SDK CommonJS module out of a Node package!
Stars: ✭ 95 (+313.04%)
Mutual labels:  node-js
node-github-publish
Publishes a file to a repository through the GitHub Contents API
Stars: ✭ 20 (-13.04%)
Mutual labels:  node-js
karaoke-forever
Open karaoke party system
Stars: ✭ 180 (+682.61%)
Mutual labels:  node-js
Becoditive-API
The official API of beCoditive with many endpoints like memes, animals, image manipulation, url shortner, etc.
Stars: ✭ 14 (-39.13%)
Mutual labels:  node-js
mCaptcha
A no-nonsense CAPTCHA system with seamless UX | Backend component
Stars: ✭ 473 (+1956.52%)
Mutual labels:  captcha
ministun
A zero dependency STUN server
Stars: ✭ 26 (+13.04%)
Mutual labels:  node-js
captcha-solver
Library and CLI for automating captcha verification across multiple providers.
Stars: ✭ 101 (+339.13%)
Mutual labels:  captcha
motor-hat
Node Module to control Adafruits MotorHAT for the RaspberryPi
Stars: ✭ 28 (+21.74%)
Mutual labels:  node-js
esaj
Scrapers for many e-SAJ systems
Stars: ✭ 35 (+52.17%)
Mutual labels:  captcha
eaf-linter
🤪 A linter, prettier, and test suite that does everything as-simple-as-possible.
Stars: ✭ 17 (-26.09%)
Mutual labels:  node-js

captcha.js

This is a Captcha for Node.js Applications.

Example

中文介绍和使用说明

Just write an example of Express, others have time to come up.

1 2 3 4 5 6 7

Requirements

  • ImageMagick 6.9+
  • Ghostscript 8+

Ubuntu

sudo apt-get install imagemagick ghostscript

Mac OS X

brew install imagemagick ghostscript

Usage

Quick Example

const Captcha = require('captcha.js');
const captcha = new Captcha({length: 5});

captcha.create((err, result) => {
  if(err) throw err;
  console.log(JSON.stringify(result, null, 2));
});

Optional parameter

new Captcha({
  Length: 4, // number of characters generated
  Font_size: 45, // font size
  Implode: 0.4, // text distortion
  Colorful: true, // whether to colorful
  Line: true, // whether to add dry winding
  Cache_limit: 50, // number of caches
  Cache_dir: '/tmp/' // cache folder
});
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].