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.
yarn add --dev @resource-sentry/writer-es2015
path
, output directory for the final JavaScriptrs.js
file.
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');