Creation:2024-08-11Last update:2025-11-22
Reference this doc to your favorite AI assistantChatGPTClaudeDeepSeekGoogle AI modeGeminiPerplexityMistralGrok
Ask your question and get a summary of the document by referencing this page and the AI provider of your choice
Edit this doc
If you have an idea for improving this documentation, please feel free to contribute by submitting a pull request on GitHub.
GitHub link to the documentationCopy
Copy doc Markdown to clipboard
CLI SDK
The CLI SDK is a library that allows you to use the Intlayer CLI in your own code.
bash
Copy code
Copy the code to the clipboard
npm install @intlayer/cli --save-devExample of usage:
ts
Copy code
Copy the code to the clipboard
import { push, pull, fill, build, listContentDeclaration, testMissingTranslations, docTranslate, docReview, extract,} from "@intlayer/cli";push();// ...pull();// ...fill();// ...build();// ...listContentDeclaration();// ...testMissingTranslations();// ...docTranslate();// ...docReview();// ...extract();// ...