Skip to content

Latest commit

 

History

History
55 lines (44 loc) · 1.06 KB

README.md

File metadata and controls

55 lines (44 loc) · 1.06 KB

Semantics

Semantics is a simple yet powerful i18n library for JavaScript, built for both Node and the web.

Note: Semantics is in v0; it should not be considered stable.

Installation

Node

npm i semantics-i18n
const Semantics = require('semantics-i18n');

Browser

<script src="path/to/semantics.js"></script>
<!-- Semantics will be declared as a global object -->

Basic usage

var $ = Semantics('es', {
    "values": {
        "Hello": "Hola",
        "Yes": "Sí",
        "No": "No",
        "Maybe": "Tal vez"
    }
});

$('Hello'); // "Hola"

Take a look at the examples.

License

MIT License