Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

arajs

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

arajs

An npm module that provides Arabic language processing capabilities for JavaScript applications, inspired by the popular Python package "pyarabic". With "arajs", developers can easily perform tasks such as Arabic text normalization, tokenization, and more

  • 1.0.13
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

ARAJS

npm version enter image description here enter image description here enter image description here enter image description here enter image description here

This module provides various functions to process and analyze Arabic text and numbers
To check the package on npmjs click @npm here
Read the documentation here

Features

  • Strip characters from text (harakat, tashkeel, small, tatweel, shadda)
  • Normalize ligatures, hamzas, tehs, and alefs in text
  • Separate and join Arabic letters and marks
  • Check for shadda, vocalized words or text, Arabic strings, and Arabic ranges
  • Reduce tashkeel in text
  • Determine if a word is a valid Arabic word
  • Convert a number to its Arabic textual representation.
  • Extract Arabic number phrases from a given text.
  • Detect number words and phrases in a list of words and return a list of tags.
  • Convert an Arabic number in textual form to its numeric value.
  • Retrieve character order and name.
  • Arabic range generation.
  • Get characters at specific positions in a word.
  • Check if two words are vocalized similarly.
  • Check if a word matches a specific pattern (wazn).
  • Check if two words have similar shaddas.
  • and many more functions, ready to use.

Usage


First, install the module:


npm i arajs

or


npm install arajs

Secondlly, import the module:


const {number2text, stripTashkeel} =  require("arajs");

Now, you can use the various functions provided by the module to process and analyze Arabic text.

Example


const  number  =  232;

console.log(number2text(number)); // مئتان و إثنان و ثلاثون

  

const  text  =  'مَرْحَبًا بِكُمْ';

const  strippedText  =  stripTashkeel(text);

console.log(strippedText); // مرحبا بكم

Features to be implemented

  • Documentation for the package.

  • Names generating and extraction from text.

  • Names romanizition and translation.

  • Arabic verb conjugator.

  • Text Taskheel.

check the repo here
Read the documentation here

Keywords

FAQs

Package last updated on 23 Mar 2023

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc