Creation:2024-08-11Last update:2025-11-22
이 문서를 원하는 AI 어시스턴트에 참조하세요ChatGPTClaudeDeepSeekGoogle AI modeGeminiPerplexityMistralGrok
이 페이지와 원하는 AI 어시스턴트를 사용하여 문서를 요약합니다
이 페이지의 콘텐츠는 AI를 사용하여 번역되었습니다.
영어 원본 내용의 최신 버전을 보기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
CLI SDK는 Intlayer CLI를 자신의 코드에서 사용할 수 있게 해주는 라이브러리입니다.
bash
코드 복사
코드를 클립보드에 복사
npm install @intlayer/cli --save-dev사용 예시:
ts
코드 복사
코드를 클립보드에 복사
import { push, pull, fill, build, listContentDeclaration, testMissingTranslations, docTranslate, docReview, extract,} from "@intlayer/cli";push();// ...pull();// ...fill();// ...build();// ...listContentDeclaration();// ...testMissingTranslations();// ...docTranslate();// ...docReview();// ...extract();// ...