Skip to content

MindfulMinun/Semantics

Repository files navigation

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

About

Internationalization library for both Node and the web.

Resources

License

Stars

Watchers

Forks

Packages

No packages published