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 🙏

© 2024 – Pkg Stats / Ryan Hefner

kalemah

v0.0.7

Published

(kalemah - كَلِمة) is an internationalization library written fully in Typescript

Downloads

10

Readme

Kalemah - كَلِمة

😄 Kalemah in arabic means "word"

npm version Install size

Get Started

npm install kalemah
yarn add kalemah
pnpm add kalemah

Initializing new document

Kalemah gives you the possibility to have more than one document and each document can hold mutual or different localizations with different options

import { Doc } from "kalemah";

const doc = new Doc({
  default: "en",
  localizations: [
    {
      name: "en", // must be unique
      content: {
        title: "Hello World",
        country: {
          name: "Saudi Arabia",
          capital: "Makkah",
          more: {
            name: "More {{category}}",
          },
        },
      },
    },
    {
      name: "ar", // must be unique
      content: {
        title: "مرحبا بالعالم",
        country: {
          name: "السعودية",
          capital: "مكة المكرمة",
          more: {
            name: "المزيد {{category}}",
          },
        },
      },
    },
  ],
});

💡 By the way, you can create limitless number of documents. LIMITLESS! let me show you how...

import { Doc } from "kalemah";

const doc = new Doc({
  key: "en-fr-doc", // this will be a completely separate document from the default one
  localizations: [
    {
      name: "en", // must be unique (no worries if you're using it in anther document)
      content: {...}
    },
    {
      name: "fr", // must be unique
      content: {...}
    }
  ],
});

✨ I encourage you to dig deeper into the library to understand it better, and for more info about what each property exactly does, you can just hover on it

🍄 kindly consider that some of the properties are not meant to have direct impact on your application yet some properties are designed to be used later to help in scaling the library for future purposes (stay tuned). ❤️

🌪️ Translation

let's go over the second method that the library provides for you to interact with the documents.

basic referencing

import { kalemah } from "kalemah";
const { k } = kalemah(/* doc_id */);

// flat
const msg = k("title");

// dot notation referencing
const msg = k("key.sub1.sub2");

// bracket notation referencing
const msg = k("key.sub1['sub2']");

// array index
const msg = k("country['cities']['0'].name");

// conditional & mixed
const msg = k(`country.${true ? "more" : ""}['names']['0']`);

Interpolation

allows you to change any key surrounded by {{dynamic_key}}

prefix: {{ suffix: }} > the key must be in between

import { kalemah } from "kalemah";
const { k } = kalemah(/* doc_id */);

// { key: "{{country_name}} is where I'm from" }

const msg = k("key", {
  country_name: "Egypt",
  // the other dynamic keys go here...
});
// result: Egypt is where I'm from

🀄️ kalemah() -> refers to the default document kalemah(doc_id) -> if you have a document with an especial "key"

changeLanguage(local_name)

changes the active localization for the target doc

import { kalemah } from "kalemah";
const { changeLanguage } = kalemah(/* doc_id */);

changeLanguage("local_name");

activeContent()

Returns the active localization content for the target doc

import { kalemah } from "kalemah";
const { activeContent } = kalemah(/* doc_id */);

const content = activeContent();

activeName()

Returns The active localization name for the target doc

import { kalemah } from "kalemah";
const { activeName } = kalemah(/* doc_id */);

const name = activeName();

getLocalization()

Returns the whole object of a localization in the target doc

import { kalemah } from "kalemah";
const { getLocalization } = kalemah(/* doc_id */);

const local = getLocalization(); // without local_name it will return the active localization
const arLocal = getLocalization("ar"); // the arabic localization, even if it's not the active one

getLocalizations()

Returns (All) the localizations in the target doc

import { kalemah } from "kalemah";
const { getLocalizations } = kalemah(/* doc_id */);

const locals = getLocalizations();

contents()

Returns all the localizations content in the target doc

import { kalemah } from "kalemah";
const { contents } = kalemah(/* doc_id */);

const contents = contents();

getKey()

Gets the value of a key in a localization content or in the active localization content (in the target doc).

import { kalemah } from "kalemah";
const { getKey } = kalemah(/* doc_id */);

const key = getKey("country['cities']['0'].name", "local_name");

// search in the active localization directly
const key2 = getKey("country['cities']['0'].name");

exists(prop_path?)

Check if the path exists in the active localization content.

import { kalemah } from "kalemah";
const { exists } = kalemah(/* doc_id */);

if (exists("country.code")) {
  // ...
}

dir(local_name?)

Returns the direction of the localization

import { kalemah } from "kalemah";
const { dir } = kalemah(/* doc_id */);

dir(); // active localization direction
dir("en"); // ltr
dir("ar"); // rtl

Palestine, Sudan, Syria - I will never forget

🇵🇸🇸🇩🇸🇾

Free My People. Be on the right side of the history


Alhamdulillah, Allah is the best of the planners 💚️ MIT © Ahmed Ragab