npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

reversible-arabic-slugifier

v1.0.0

Published

A deterministic, reversible Arabic text to URL-safe slug converter with perfect round-trip fidelity

Readme

Reversible Arabic Slugifier

A deterministic, reversible Arabic text to URL-safe slug converter with perfect round-trip fidelity.

Features

Perfect Reversibility: Convert Arabic text to slugs and back with 100% accuracy
Deterministic: Same input always produces the same output
URL-Safe: Generated slugs are safe for use in URLs
Comprehensive: Supports Arabic letters, diacritics, Arabic-Indic numerals, and common punctuation
TypeScript: Full TypeScript support with type definitions
Zero Dependencies: Lightweight with no external dependencies
Well Tested: Comprehensive test suite with high coverage

Installation

# npm
npm install reversible-arabic-slugifier

# pnpm
pnpm add reversible-arabic-slugifier

# yarn
yarn add reversible-arabic-slugifier

# bun
bun i reversible-arabic-slugifier

Quick Start

import { slugify, deslugify } from "reversible-arabic-slugifier";

// Convert Arabic text to slug
const arabicText = "مرحبا بالعالم";
const slug = slugify(arabicText);
console.log(slug);
// => "~m~r~h~b~a~_~b~a~l~E~a~l~m"

const originalText = deslugify(slug);
console.log(originalText); // => "مرحبا بالعالم"

// Perfect round-trip
console.log(originalText === arabicText); // true

Supported Characters

Escape Prefix

All non-ASCII characters are escaped using a tilde (~) plus a short code.

Arabic Letters

ا ب ت ث ج ح خ د ذ ر ز س ش ص ض ط ظ ع غ ف ق ك ل م ن ه و ي
Special forms: أ إ آ ى ة ء ؤ ئ

Diacritics (Tashkeel)

Short vowels: َ ُ ِ
Tanween: ً ٌ ٍ
Other marks: ّ ْ ـ

Numerals

Arabic-Indic digits: ٠ ١ ٢ ٣ ٤ ٥ ٦ ٧ ٨ ٩
ASCII digits: 0-9

Other Characters

  • ASCII letters: a-z, A-Z
  • ASCII digits: 0-9
  • Common punctuation: . , : ; ! ? ( ) [ ] { } " ' / \ & % # @ $ + = < > | ~
  • Dash (-) and underscore (_) are preserved as-is
  • Spaces are escaped to ~_

How It Works

  1. Escape-prefix: All escapes start with a tilde (~)
  2. Unique codes: Each supported character maps to a unique code
  3. Greedy matching: deslugify always picks the longest matching escape sequence
  4. ASCII pass-through: Alphanumeric, -, _ are unchanged

Error Handling

try {
  slugify("Hello € World");
} catch (error) {
  console.log(error.message);
  // => "Unsupported character(s): €"
}

Contributing

If you encounter any issues or have suggestions, please submit them via issues or pull requests.

License

This project is licensed under the MIT License. See LICENSE for details.