Package Exports
- @freddieridell/glot
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@freddieridell/glot) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Glot
A tiny, simple, powerful, expressive, i18n library
Usage
import createGlot from "@freddieridell/glot";
import { format as formatDate } from "date-fns/fp";
//initalise with dictionary
const glot = createGlot({
en: {
greetings: "'ello, govna'",
date: "yyyy-MM-dd",
thing_1: "number one",
thing_2: "number two",
},
fra: {
greetings: "'sup, Monsieur",
},
})({ lang: "en" });
//basic usage
console.log(glot`greetings`);
console.log(glot`INVALID_KEY`);
//switch language
console.log(glot({ lang: "fra" })`greetings`);
const foreverFrench = glot({ lang: "fra" });
console.log(foreverFrench`greetings`);
//create parameterized functions
const localisedDteFormatter = glot({ mkFn: formatDate })`date`;
console.log(localisedDteFormatter(new Date()));
// interpolate values
new Array(2).fill(null).map((_, i) => console.log(glot`thing_${i + 1}`));
Todo
- create companion react component
- think about pluralisation
- types
- reasonml
- flow
- typescript
- tune babel config to reduce bundle size
- write tests, full coverage
- write better readme
- write better readme