CompositeJs

A JavaScript library to enable multiple languages for your web app.
LangPack LangPack
helps you to build a global web app or create a library with international supports.

Installation

Package   |   Get details >
> npm i langpack

Features

Localization
A set of tools to help you to set up the environment for globalization and localization.
You can register the strings for usages.
import { Resources } from 'langpack';
let res = new Resources();

// Register
res.register({
    language: "en",
    strings: {
        name: "App name",
        description: "The business logic library."
    }
});

// Usage
console.info(res.getLocaleString("name"));

Source

GitHub