@resource-sentry/writer-es2015
v1.4.1
Published
Resource Sentry Writer with an output target as ECMAScript 2015.
Downloads
7
Maintainers
Readme
Writer: ES2015
Resource Sentry Writer with an output target as ECMAScript 2015.
Represents category types as ES6 module with simple API.
Use Rs.getText(ID, locale)
for multi-language support.
Current implementation performs RFC 4647 Lookup to find the best language for the provided locale.
Installation
yarn add --dev @resource-sentry/writer-es2015
Configuration
path
, output directory for the final JavaScriptrs.js
file.
Example
After all reader have finished the work. Writer would produce rs.js
resource file at the provided destination.
import Rs from './rs';
Rs.getResource(Rs.Text.HELLO);
Rs.getResource(Rs.Value.EASY_COUNT);
Rs.getText(Rs.Text.WORLD, 'en-US');