# i18next-typescript-parser **Repository Path**: mirrors_emersion/i18next-typescript-parser ## Basic Information - **Project Name**: i18next-typescript-parser - **Description**: Extract i18next keys from a TypeScript codebase - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-04-30 - **Last Updated**: 2026-07-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # i18next-typescript-parser Extract [i18next] keys from a TypeScript codebase. Unlike [i18next-parser], this package operates on a typed syntax tree rather than lexer tokens. As a result, it's more reliable and precise. ## Installation npm install --save-dev i18next-typescript-parser ## Usage ```ts import { extractKeys } from 'i18next-typescript-parser'; const keys = extractKeys(); for (const { namespace, key } of keys) { console.log(namespace, key); } ``` ## License MIT [i18next]: https://www.i18next.com/ [i18next-parser]: https://github.com/i18next/i18next-parser