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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@geoalgeria/ooredoo

v1.0.0

Published

Ooredoo Algérie retail network — Espaces Ooredoo (EO), City Shops (CSO) and Espaces Services (ESO) with real coordinates and wilaya/commune linkage, from the operator's public locator API. Completes the telecom retail trio with @geoalgeria/mobilis and @ge

Readme

English | Français | العربية

@geoalgeria/ooredoo

Ooredoo Algérie's retail network — as data you can install.

npm npm downloads License: MIT

Overview

572 Ooredoo stores across 63 wilayas — Espaces Ooredoo (EO), City Shops (CSO) and Espaces Services (ESO) — from the operator's own locator API, each with real coordinates and wilaya/commune linkage. Completes the telecom retail trio with @geoalgeria/mobilis and @geoalgeria/djezzy.

Installation

npm install @geoalgeria/ooredoo

Quick start

import {
  stores,
  storeById,
  storesByWilaya,
  storesByType,
  metadata,
} from "@geoalgeria/ooredoo";

stores().length; // 572

// Espaces Services only
storesByType("ESO").length; // 436

// Everything in Alger (code 16)
storesByWilaya(16).map((r) => r.name);

// A single record, and dataset metadata
storeById("16-001")?.type;
metadata().wilayas_covered; // 63

What you can build

  • An Ooredoo store locator / map layer
  • A combined telecom-retail map (Ooredoo + Mobilis + Djezzy)
  • Coverage / footprint analysis by wilaya and store type

What's inside

| Dataset | Count | Coordinates | Notes | | --- | --- | --- | --- | | stores | 572 | all 572 (exact) | Ooredoo locator API, wilaya/commune-linked |

By type (type)

| Type | Count | Meaning | | --- | --- | --- | | EO | 100 | Espace Ooredoo | | ESO | 436 | Espace Services Ooredoo | | CSO | 36 | City Shop Ooredoo |

Formats

  • data/stores.json — full array (typed by types/index.d.ts)
  • data/csv/stores.csv — flat CSV
  • data/geojson/stores.geojsonFeatureCollection (all records)
  • data/metadata.json — counts, sources, generated date
import data from "@geoalgeria/ooredoo/data/stores.json" with { type: "json" };
import type { OoredooStore } from "@geoalgeria/ooredoo";

How the data is built

Pulled from Ooredoo Algérie's public Trouvez-nous locator API (a Liferay Headless "Objects" endpoint behind ooredoo.dz), which returns a real latitude/longitude per store. Because the API files stores under the legacy 48-wilaya scheme, wilaya/commune are re-derived from the coordinates by nearest-centroid join against the geoalgeria commune set (current 69-wilaya scheme) — the operator's own declared wilaya is kept as operator_wilaya. Rebuild with npm run fetch (or --cache). See research/ooredoo/ in the monorepo.

On accuracy

Store names, types and coordinates are from the operator (geo_precision: "exact"). Wilaya is effectively exact (from the surveyed point); commune is a nearest-centroid best-effort. A few operator points carry inaccurate coordinates in the source, so their derived wilaya/commune can be wrong — the operator_wilaya field preserves Ooredoo's own declared wilaya in those cases. This is Ooredoo's own store directory as exposed by its locator; a store may occasionally be a partner point rather than a company-owned space.

Source & license

Data © Ooredoo Algérie, redistributed for reference (the same status as @geoalgeria/mobilis / @geoalgeria/djezzy). Wilaya/commune linkage uses the geoalgeria base dataset. Package code under MIT (see LICENSE).

Questions?

Open an issue: https://github.com/yasserstudio/geoalgeria/issues