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

sinhala-datetime

v1.0.7

Published

Sinhala date and time formatter with TypeScript support

Readme

Sinhala (සිංහල) DateTime Formatter

sinhala-datetime

npm version GitHub release (latest by tag) Unit Tests Last Commit GitHub stars GitHub forks GitHub contributors GitHub pull requests GitHub issues

A lightweight Sinhala (සිංහල) date and time formatter with full TypeScript support. Format JS Date objects into readable Sinhala strings, including time with AM/PM.

✨ Features

  • Converts Date to Sinhala (days/months)
  • Supports AM/PM time formatting
  • Returns fallback string for invalid dates
  • ESM, CJS, and TypeScript support

📦 Installation

Using npm

npm install sinhala-datetime

Using pnpm

pnpm add sinhala-datetime

🚀 Usage

Import the formatter

import { formatSinhalaDate } from "sinhala-datetime";

Format a Date

// Format current date
const now = new Date();
console.log(formatSinhalaDate(now));

// Date without time
const dateOnly = new Date("2025-07-09T00:00:00");
console.log(formatSinhalaDate(dateOnly));
// ➤ බදාදා, 9 ජූලි 2025

// Date with AM time
const dateAM = new Date("2025-07-09T09:15:00");
console.log(formatSinhalaDate(dateAM, { showTime: true }));
// ➤ බදාදා, 9 ජූලි 2025 9:15 පෙ.ව.

// Date with PM time
const datePM = new Date("2025-07-09T15:45:00");
console.log(formatSinhalaDate(datePM, { showTime: true }));
// ➤ බදාදා, 9 ජූලි 2025 3:45 ප.ව.

// Midnight time
const midnight = new Date("2025-07-09T00:00:00");
console.log(formatSinhalaDate(midnight, { showTime: true }));
// ➤ බදාදා, 9 ජූලි 2025 12:00 පෙ.ව.

// Invalid date fallback
const invalid = new Date("not-a-date");
console.log(formatSinhalaDate(invalid));
// ➤ වලංගු නොවන දිනයකි

📘 API

formatSinhalaDate(date: Date): string

Parameters:

  • date: JS Date object

Returns:

Sinhala-formatted date string or fallback if invalid.

🧪 Run Tests

# Make sure you have Jest installed
pnpm add -D jest @types/jest ts-jest
pnpm test

🛠 Build CJS + ESM

# Make sure you have TypeScript and tsc-alias installed
pnpm add -D typescript ts-jest
pnpm build

📁 Structure

sinhala-datetime/
├── dist/            # Compiled output
├── src/             # Main source code
│   ├── libs/        # Formatting logic
│   ├── types/       # TypeScript types
│   ├── utils/       # Helper functions
│   └── index.ts     # Library entry
├── tests/           # Unit tests
├── package.json     # Project metadata
├── README.md        # Documentation
├── tsconfig.*.json  # TypeScript configs
└── jest.config.ts   # Testing config

📄 License

MIT © Lakshan Rukantha

🙌 Contribute

Contributions are welcome! Please open an issue or submit a pull request.