alpinejs-character-count
v1.0.4
Published
Track the character count of an input with the option to compare against the max length π
Maintainers
Readme
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-countimport Alpine from 'alpinejs'
import count from 'alpinejs-character-count'
Alpine.plugin(count)
Alpine.start()π Quick Start
- Add the
x-countdirective to display character counts - Use modifiers to specify maximum length or reference elements
- Customize display with static values or Alpine.js refs
π Usage Options
| Usage | Description |
| ------------------------------- | --------------------------------------------------- |
| 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.
