A Node.js client for the v1 and v2 Crowdin APIs
🚧 This is still a work in progress. To see what remains to be implemented, check out the open issues. 🚧
npm install crowdinconst crowdin = require('crowdin')({
key: process.env.CROWDIN_KEY,
schemaVersion: 'v2'
})
const projects = await crowdin.projects.getMany()To try out some examples, clone the repo and install dependencies:
git clone https://github.com/aletrejo/crowdin-wrapper
cd crowdin-wrapper
npm installThen you can run the examples:
node examples/v1-get-project-details.js
node examples/v2-add-files.jsThis module exports a single factory function that returns a Crowdin client:
optionsObjectkeyString - Your Crowdin API key. Required.schemaVersionString (optional) - Çan bev1orv2. Defaults tov2.hostnameString (optional) - Defaults toapi.crowdin.com
The returned client is an object of deeply nested API operations like
crowdin.projects.files.getMany and crowdin.projects.branches.languages.progress.getMany.
Each of these operations returns a Promise to a got response object.
See docs/v1.md and docs/v2.md for reference.
Special thanks to ✨Paul Le Cam✨ for donating the crowdin npm package name.
Thanks goes to these wonderful people (emoji key):
Alejandra Trejo 💻 📖 |
Zeke Sikelianos 📖 🎨 🤔 💻 |
TomPradat 📖 |
This project follows the all-contributors specification. Contributions of any kind welcome!