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

@puraty/i18n-typed-message

v1.0.0

Published

A type-safe internationalization (i18n) message manager for robust application localization.

Readme

@puraty/i18n-typed-message

npm version License: ISC

A type-safe, minimalist Internationalization (i18n) message manager for TypeScript projects. This library eliminates runtime errors by enforcing translation key existence and placeholder parameter usage at compile time.

It is designed for high reliability and zero-cost abstraction over your message files.

Features

  • Compile-Time Type Safety: TypeScript checks if your translation key exists and if all required parameters ({name}, {count}) are provided.
  • Minimalist Core: Focuses purely on message substitution without heavy date/currency formatting dependencies.
  • ESM First: Modern module structure for Node.js and browser bundlers.

Installation

npm install @puraty/i18n-typed-message

Usage

1. Define Message Structure

First, define the exact structure of your messages, including all placeholders, in a TypeScript file.

// src/messages.ts (Define the structure of translation keys)

export type AppMessages = {
    // Parameters: {appName} is required
    'welcome.title': 'Welcome to {appName}!', 
    
    // Parameters: {userName} and {count} are required
    'user.greeting': 'Hello, {userName}. You have {count} new messages.', 
    
    // No parameters
    'button.save': 'Save',
};

// The translation data type must conform to the keys in AppMessages
export type TranslationData = {
    [K in keyof AppMessages]: string;
};

2. Prepare Translation Files

Create your translation files (e.g., en.json, es.json) based on the TranslationData structure.

// en.json
{
    "welcome.title": "Welcome to {appName}!",
    "user.greeting": "Hello, {userName}. You have {count} new messages.",
    "button.save": "Save"
}

// es.json (Español)
{
    "welcome.title": "¡Bienvenido a {appName}!",
    "user.greeting": "Hola, {userName}. Tienes {count} mensajes nuevos.",
    "button.save": "Guardar"
}

3. Initialize and Use

Initialize the manager with your default locale messages, and use the t() function.

import { I18nManager } from '@puraty/i18n-typed-message';
import { TranslationData } from './messages'; // Import user-defined types

// Assume enMessages is loaded from en.json
const enMessages: TranslationData = /* ... en.json content ... */;

// Pass the message structure type (T) to enable type checking
const i18n = new I18nManager<TranslationData>('en-US', enMessages);

// Success: Compile OK
const welcome = i18n.t('welcome.title', { appName: 'My App' });
console.log(welcome); // Output: "Welcome to My App!"

// Error Example: (Compile-time error prevents runtime bugs)
const error2 = i18n.t('welcome.title');
// Type Error: Property 'appName' is missing in type '{}'.
const error3 = i18n.t('welcome.title', { appName: 'My App', extra: 1 });
// Type Error: Object literal may only specify known properties.

API Reference

| Function | Description | | :--- | :--- | | new I18nManager<T>(locale, messages) | Creates a new I18n manager. T is the type of the translation messages. | | t<K>(key, params) | Type-safe retrieval and substitution of a translation message. | | setLocale(locale, messages) | Changes the current locale and the message data set. | | getLocale() | Returns the current active locale string. |

License

This project is licensed under the ISC License. See the LICENSE file for details.

Contributing

Feel free to open issues or submit pull requests to improve this utility!