Launch Week Day 2: Introducing Reports: An Extensible Reporting Framework for Socket Data.Learn More
Socket
Book a DemoSign in
Socket

alpinejs-character-count

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

alpinejs-character-count

Track the character count of an input with the option to compare against the max length 🔟

latest
Source
npmnpm
Version
1.0.6
Version published
Maintainers
1
Created
Source

Alpine JS Character Count

A lightweight Alpine.js plugin for tracking and displaying character counts with support for maximum length validation and remaining character calculations.

✨ Features

  • 🪶 Lightweight - Minimal overhead, maximum performance
  • Real-time - Live character count updates as users type
  • 📏 Flexible limits - Static numbers, Alpine.js refs, or maxlength attributes
  • 🎯 Multiple displays - Show character count or remaining characters
  • 🚫 Zero dependencies - Only requires Alpine.js

📦 Installation

With a CDN

<script
  defer
  src="https://unpkg.com/alpinejs-character-count@latest/dist/count.min.js"
></script>

<script defer src="https://unpkg.com/alpinejs@latest/dist/cdn.min.js"></script>

With a Package Manager

yarn add -D alpinejs-character-count

npm install -D alpinejs-character-count
import Alpine from 'alpinejs'
import count from 'alpinejs-character-count'

Alpine.plugin(count)

Alpine.start()

🚀 Quick Start

  • Add the x-count directive to display character counts
  • Use modifiers to specify maximum length or reference elements
  • Customize display with static values or Alpine.js refs

📋 Usage Options

UsageDescription
x-count="expression"Shows current character count
x-count.50="expression"Shows remaining characters (max 50)
x-count.textarea="expression"Uses maxlength from element with x-ref="textarea"

Basic Character Count

<div x-data="{ message: 'Hello' }">
  <textarea x-model="message"></textarea>

  <p>Characters: <span x-count="message"></span></p>
</div>

Remaining Characters with Static Limit

<div x-data="{ message: 'Hello' }">
  <textarea x-model="message"></textarea>

  <p>Characters: <span x-count="message"></span>/50</p>
  <p>Remaining: <span x-count.50="message"></span></p>
</div>

Using Alpine.js Refs

<div x-data="{ message: 'Hello' }">
  <textarea x-model="message" maxlength="100" x-ref="textarea"></textarea>

  <p>Characters: <span x-count="message"></span></p>
  <p>Remaining: <span x-count.textarea="message"></span></p>
</div>

💡 Complete Example

This example uses Tailwind CSS for styling but that is not required.

<div
  x-data="{ message: '', maxLength: 280 }"
  class="max-w-3xl mx-auto space-y-4"
>
  <div>
    <label for="post" class="block font-medium text-gray-700">
      What's on your mind?
    </label>

    <textarea
      id="post"
      x-model="message"
      placeholder="Share your thoughts..."
      class="w-full border-gray-300 shadow-sm rounded mt-1"
    ></textarea>

    <p class="text-gray-700 text-sm mt-1.5">
      <span
        x-count="message"
        class="font-medium"
        :class="{
          'text-red-600': message.length > maxLength,
          'text-yellow-600': message.length > maxLength * 0.9 && message.length <= maxLength,
        }"
      ></span
      >/<span x-text="maxLength"></span> characters
    </p>
  </div>

  <div class="flex justify-end">
    <button
      :disabled="message.length === 0 || message.length > maxLength"
      class="px-3 py-1.5 bg-blue-600 text-sm font-medium text-white rounded disabled:opacity-50 disabled:cursor-not-allowed"
    >
      Publish
    </button>
  </div>
</div>

🎯 How It Works

Character Count Display

The x-count directive automatically updates the text content of an element to show the current character count of the specified expression.

Remaining Characters

When you provide a modifier (like .50 or .textarea), the directive calculates and displays the remaining characters based on the maximum limit.

Reference Elements

Instead of hardcoding maximum values, you can reference other elements using Alpine.js refs. The plugin will automatically read the maxlength attribute from the referenced element.

🎨 Styling Tips

Visual Feedback with Tailwind CSS

<div x-data="{ content: '' }">
  <textarea
    x-model="content"
    maxlength="100"
    class="w-full border-gray-300 shadow-sm rounded"
  ></textarea>

  <div class="text-sm mt-1 text-gray-700">
    <span x-count="content"></span>/100 characters (<span
      x-count.100="content"
    ></span>
    remaining)
  </div>
</div>

Progress Bar Visualization

<div x-data="{ message: '' }">
  <textarea
    x-model="message"
    maxlength="200"
    class="w-full border-gray-300 shadow-sm rounded"
  ></textarea>

  <div class="mt-1.5">
    <div class="flex justify-between text-xs text-gray-700">
      <span><span x-count="message"></span> characters</span>
      <span><span x-count.200="message"></span> remaining</span>
    </div>

    <div class="bg-gray-200 rounded-full h-2 mt-3">
      <div
        class="h-2 rounded-full transition-[width] duration-300 bg-blue-600"
        :style="`width: ${Math.min((message.length / 200) * 100, 100)}%`"
      ></div>
    </div>
  </div>
</div>

🌐 Browser Support

This plugin works in all modern browsers that support Alpine.js. No additional polyfills or dependencies are required.

🤝 Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

Keywords

alpinejs

FAQs

Package last updated on 29 Mar 2026

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