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

hela-util

v3.0.0

Published

Ultra-lightweight, type-safe utility for Sri Lankan administrative regions (provinces, districts, DS divisions) and postal codes.

Readme

🇱🇰 hela-util

An ultra-lightweight, type-safe utility library for working with Sri Lankan administrative regions (provinces, districts, and DS divisions) and postal codes.

TypeScript NPM Version License: ISC


✨ Features

  • 🪶 Ultra-lightweight: Under 230kB unpacked size with Zero external dependencies.
  • 🛡️ Type-safe: Built with TypeScript; full type definitions included.
  • 🚀 Modern: supports ES Modules (ESM) and CommonJS (CJS).
  • 🗺️ Comprehensive Data:
    • All 9 Provinces (English, Sinhala, Tamil names + ISO & P-codes).
    • All 25 Districts.
    • 331 Divisional Secretariat (DS) Divisions with GN division counts.
    • Complete list of Postal Codes for major locations.
  • Validation: Built-in helper for validating Sri Lankan postal codes.

📦 Installation

npm install hela-util

🚀 Quick Start

import { 
    getProvinces, 
    getDistrictsByProvince, 
    getDSDivisionsByDistrict,
    getDSDivisions,
    getPostalCodeByLocation,
    isValidPostalCode 
} from "hela-util";

// 1. Get all provinces with Sinhala/Tamil names and districts
const provinces = getProvinces();
console.log(provinces[0].name);          // "Central"
console.log(provinces[0].sinhala_name);  // "මධ්‍යම"

// 2. Get districts for a specific province
const districts = getDistrictsByProvince("Central"); 
// Output: ["Kandy", "Matale", "Nuwara Eliya"]

// 3. Get DS Divisions for a specific district
const colomboDivisions = getDSDivisionsByDistrict("Colombo");
// Output: [{ name: 'Colombo', gn_divisions: 35 }, ...]

// 4. Get all districts and their DS divisions
const allDS = getDSDivisions();
// Output: [{ district: 'Colombo', ds_divisions: [...] }, ...]

// 5. Find a postal code by location name
const code = getPostalCodeByLocation("Athurugiriya(CO)");
// Output: { postal_code: '10150', location: 'Athurugiriya(CO)' }

// 6. Validate a 5-digit postal code
const isValidResult = isValidPostalCode("10250"); // true

📖 API Reference

Provinces & Districts

  • getProvinces(): Returns an array of Province objects (includes Sinhala/Tamil names, capital, ISO codes, and districts).
  • getDistrictsByProvince(provinceName): Returns a string array of district names for the given province.

DS Divisions

  • getDSDivisionsByDistrict(districtName): Returns an array of DSDivision objects (name and gn_divisions) for the given district.
  • getDSDivisions(): Returns the full list of districts and their DS divisions.

Postal Codes

  • getPostalCodeByLocation(location): Returns a PostalCode object (postal_code and location) for the matched string.
  • getPostalCodes(): Returns the full array of postal codes.
  • isValidPostalCode(code): Returns true if the string matches the 5-digit Sri Lankan postal code format.

🛠️ Development

  1. Clone the repository.
  2. Install dependencies: npm install.
  3. Run the development watch: npm run dev.
  4. Build the production files: npm run build.

📄 License

This project is licensed under the ISC License.


Maintained with ❤️ for the Sri Lankan developer community.