@rezo-zero/xilofone-fetch
v1.0.0
Published
Fetch Xilofone messages and output them
Readme
xilofone-fetch
Fetch Xilofone messages and output them
Installation
# npm
npm install -D @rezo-zero/xilofone-fetch
# yarn
yarn add -D @rezo-zero/xilofone-fetch
# pnpm
pnpm add -D @rezo-zero/xilofone-fetchConfiguration
Copy .env.sample to .env and fill in your credentials:
XILOFONE_BASE_URL=https://xilofone.example.com
XILOFONE_USERNAME=user
XILOFONE_PASSWORD=***********
XILOFONE_FILE_ID=12
XILOFONE_OUTPUT=assets/locales/
# Optional: override the output file base name ({locale} is replaced automatically)
# XILOFONE_OUTPUT_FILE_NAME={locale}Usage
Add a script to your package.json:
{
"scripts": {
"xilo": "node ./node_modules/@rezo-zero/xilofone-fetch/dist/index.js"
}
}Then run it with your package manager:
# npm
npm run xilo
# yarn
yarn xilo
# pnpm
pnpm xilo