Creating Captcha in Node.js

A detailed guide on how to create Captcha in your Node.js application to protect your website from automated bots and enhance security.

In this article, we will learn how to create Captcha using the captcha-generator library in Node.js. We will implement a simple example to help you integrate Captcha into your application.

Node.js Code

const express = require('express');
const { createCanvas } = require('canvas');
const app = express();

app.get('/captcha', (req, res) => {
    const canvas = createCanvas(200, 100);
    const ctx = canvas.getContext('2d');

    // Create background
    ctx.fillStyle = '#ffffff';
    ctx.fillRect(0, 0, canvas.width, canvas.height);

    // Generate random text
    const captchaText = Math.random().toString(36).substring(2, 8);

    // Draw Captcha text
    ctx.fillStyle = '#000000';
    ctx.font = '40px Arial';
    ctx.fillText(captchaText, 50, 50);

    // Send Captcha image to client
    res.set('Content-Type', 'image/png');
    canvas.pngStream().pipe(res);
});

app.listen(3000, () => {
    console.log('Server is running on http://localhost:3000/captcha');
});

Detailed explanation:

  1. const express = require('express');: Import the Express library to create a web application.
  2. const { createCanvas } = require('canvas');: Import createCanvas from the canvas library to create images.
  3. app.get('/captcha', (req, res) => {...});: Define a route to create Captcha when accessing /captcha.
  4. const canvas = createCanvas(200, 100);: Create a canvas with dimensions of 200x100 pixels.
  5. ctx.fillStyle = '#ffffff';: Set the background color of the canvas to white.
  6. ctx.fillRect(0, 0, canvas.width, canvas.height);: Draw a white rectangle covering the entire canvas.
  7. const captchaText = Math.random().toString(36).substring(2, 8);: Generate a random Captcha code using a random number and converting it to base-36.
  8. ctx.fillText(captchaText, 50, 50);: Draw the Captcha code on the canvas at position (50, 50).
  9. res.set('Content-Type', 'image/png');: Set the content type of the response to PNG image.
  10. canvas.pngStream().pipe(res);: Send the Captcha image to the client.

System Requirements:

  • Node.js version 14.x or higher
  • express and canvas libraries

How to install the libraries needed to run the Node.js code above:

Run the following commands in the terminal:

npm install express canvas

Tips:

  • You can customize the Captcha code by changing the font style, colors, or sizes to match your website design.
  • For better security, store the Captcha code in a session and validate it when the user submits the form.
Tags: Node.js, Captcha


Related

How to Post data to API Using Node.js

This article guides you on how to send JSON data to an API using the axios library in Node.js, making it easy to perform POST requests to a web service.
Common Functions Used with Selenium Chrome in Node.js

This article lists common functions used when working with Selenium and Chrome in Node.js. These methods are essential for automating testing processes and interactions within the browser.
Create a Simple Chat Application Using Socket.IO in Node.js

A detailed guide on how to create a simple chat application using Socket.IO in Node.js, allowing users to send and receive messages in real-time.
How to DELETE data from a MySQL database using Node.js

A guide on how to use Prepared Statements in Node.js to delete data from a table in a MySQL database safely and effectively.  
How to automate website login using Selenium with Chrome in Node.js

A guide on how to use Selenium in Node.js to automate the login process for a website. The article will show how to set up the environment and write Node.js code to control Chrome.
Guide to creating a multi-image upload form with Node.js

A step-by-step guide on how to create a multi-image upload form in Node.js using the `Multer` library for file handling and `Express` for server creation.
Writing data to an Excel file using Node.js

A guide on how to write data to an Excel file using Node.js, employing the ExcelJS library for efficient and effective Excel file manipulation.
How to Get JSON Data from API Using Node.js

This article guides you on how to retrieve JSON data from an API using the https module in Node.js, helping you better understand how to interact with web services.
How to Sign In with raw password when password stored in the database is hashed in Node.js

A guide on how to authenticate users signing in by comparing a raw password with the hashed password stored in the database. It demonstrates using `bcrypt` in Node.js to check if the raw password matches the hashed one.
How to INSERT data into a MySQL database using Node.js

A guide on how to use Prepared Statements in Node.js to insert data into a table in a MySQL database safely and effectively with multiple parameters.

main.add_cart_success